Fix protocol fs test

This commit is contained in:
Asher
2019-04-24 18:15:56 -05:00
parent c9f91e77cd
commit 0de7247868
4 changed files with 30 additions and 11 deletions

View File

@ -3,6 +3,8 @@ import * as util from "util";
import { Module } from "../src/common/proxy";
import { createClient, Helper } from "./helpers";
// tslint:disable deprecation to use fs.exists
describe("trash", () => {
const client = createClient();
const trash = client.modules[Module.Trash];
@ -18,9 +20,10 @@ describe("trash", () => {
expect(await util.promisify(fs.exists)(file)).toBeFalsy();
});
it("should dispose", () => {
it("should dispose", (done) => {
setTimeout(() => {
client.dispose();
done();
}, 100);
});
});