提交 2c74aeb5 编写于 作者: B Benjamin Pasero

fix #112146

上级 eec97b82
......@@ -90,10 +90,17 @@ class BeforeShutdownEventImpl implements BeforeShutdownEvent {
}
}
suite('BackupTracker', () => {
suite('BackupTracker', function () {
let accessor: TestServiceAccessor;
let disposables: IDisposable[] = [];
// Given issues such as https://github.com/microsoft/vscode/issues/112146
// we see random test failures when accessing the native file system. To
// diagnose further, we retry node.js file access tests up to 3 times to rule
// out any random disk issue and increase the timeout.
this.retries(3);
this.timeout(1000 * 10);
setup(async () => {
const instantiationService = workbenchInstantiationService();
accessor = instantiationService.createInstance(TestServiceAccessor);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册