Fix tests

This commit is contained in:
Dolan
2019-08-07 22:27:44 +01:00
parent d8b60d82f3
commit 9fdd07e7fe

View File

@ -53,6 +53,11 @@ describe("Packer", () => {
assert.isDefined(error);
});
});
after(() => {
// tslint:disable-next-line:no-any
(Packer as any).compiler.compile.restore();
});
});
describe("#toBase64String()", () => {
@ -73,5 +78,10 @@ describe("Packer", () => {
assert.isDefined(error);
});
});
after(() => {
// tslint:disable-next-line:no-any
(Packer as any).compiler.compile.restore();
});
});
});