smoke tests - retry data migration tests on windows (#129279)

This commit is contained in:
Benjamin Pasero 2021-08-04 18:09:55 +02:00
parent b35dca4ffb
commit bf4a4a6b05
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

@ -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);