diff --git a/test/smoke/src/areas/workbench/data-migration.test.ts b/test/smoke/src/areas/workbench/data-migration.test.ts index 390cf30907d..7686ef8272c 100644 --- a/test/smoke/src/areas/workbench/data-migration.test.ts +++ b/test/smoke/src/areas/workbench/data-migration.test.ts @@ -64,6 +64,12 @@ export function setup(opts: ParsedArgs, testDataPath: string) { this.skip(); } + // Windows: this test is flaky for yet unknown reasons + // https://github.com/microsoft/vscode/issues/129279 + if (process.platform === 'win32') { + this.retries(2); + } + const userDataDir = join(testDataPath, 'd3'); // different data dir from the other tests const stableOptions: ApplicationOptions = Object.assign({}, this.defaultOptions);