Skip to content

Commit 3f1fb0a

Browse files
authored
Skip flaky FS test (#10244)
Merely disables test for #10240
1 parent 8e67028 commit 3f1fb0a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,10 @@ suite('FileSystem - raw', () => {
469469
});
470470

471471
suite('listdir', () => {
472-
test('mixed', async () => {
472+
test('mixed', async function() {
473+
// https://github.com/microsoft/vscode-python/issues/10240
474+
// tslint:disable-next-line: no-invalid-this
475+
return this.skip();
473476
// Create the target directory and its contents.
474477
const dirname = await fix.createDirectory('x/y/z');
475478
const file1 = await fix.createFile('x/y/z/__init__.py', '');

0 commit comments

Comments
 (0)