code-server-2/packages/protocol/test/trash.test.ts

30 lines
686 B
TypeScript
Raw Normal View History

import * as fs from "fs";
import * as util from "util";
import { Module } from "../src/common/proxy";
import { createClient, Helper } from "./helpers";
2019-04-24 23:15:56 +00:00
// tslint:disable deprecation to use fs.exists
describe("trash", () => {
const client = createClient();
const trash = client.modules[Module.Trash];
const helper = new Helper("trash");
beforeAll(async () => {
await helper.prepare();
});
it("should trash a file", async () => {
const file = await helper.createTmpFile();
await trash.trash(file);
expect(await util.promisify(fs.exists)(file)).toBeFalsy();
});
2019-04-24 23:15:56 +00:00
it("should dispose", (done) => {
setTimeout(() => {
client.dispose();
2019-04-24 23:15:56 +00:00
done();
}, 100);
});
});