Skip to content

Commit 02abee7

Browse files
Make sure the DOES_NOT_EXIST file really does not exist.
1 parent a8a0b27 commit 02abee7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/common/platform/filesystem.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ import {
2323
suite('Raw FileSystem', () => {
2424
let filesystem: IRawFileSystem;
2525
let fix: FSFixture;
26-
setup(() => {
26+
setup(async () => {
2727
filesystem = new RawFileSystem();
2828
fix = new FSFixture();
29+
30+
await ensureDoesNotExist(DOES_NOT_EXIST);
2931
});
3032
teardown(async () => {
3133
await fix.cleanUp();

0 commit comments

Comments
 (0)