debt - increase timeout and retries for #108113

This commit is contained in:
Benjamin Pasero
2020-10-05 17:29:59 +02:00
parent 74db64b44e
commit c9992ae6f3

View File

@@ -16,7 +16,12 @@ import { parseArgs, OPTIONS } from 'vs/platform/environment/node/argv';
import { InMemoryStorageDatabase } from 'vs/base/parts/storage/common/storage';
import { URI } from 'vs/base/common/uri';
suite('StorageService', () => {
suite('StorageService', function () {
// Given issues such as https://github.com/microsoft/vscode/issues/108113
// we see random test failures when accessing the native file system.
this.retries(3);
this.timeout(1000 * 10);
test('Remove Data (global, in-memory)', () => {
removeData(StorageScope.GLOBAL);