Fix tests
This commit is contained in:
@ -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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user