Skip to content

Commit 4c45cff

Browse files
authored
Data loss smoke test failures (fix microsoft#181952) (microsoft#182059)
1 parent 66e8ef9 commit 4c45cff

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/smoke/src/areas/workbench/data-loss.test.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ import { createApp, timeout, installDiagnosticsHandler, installAppAfterHandler,
99

1010
export function setup(ensureStableCode: () => string | undefined, logger: Logger) {
1111
describe('Data Loss (insiders -> insiders)', function () {
12+
13+
// Double the timeout since these tests involve 2 startups
14+
this.timeout(4 * 60 * 1000);
15+
1216
let app: Application | undefined = undefined;
1317

1418
// Shared before/after handling
@@ -130,6 +134,10 @@ export function setup(ensureStableCode: () => string | undefined, logger: Logger
130134
});
131135

132136
describe('Data Loss (stable -> insiders)', function () {
137+
138+
// Double the timeout since these tests involve 2 startups
139+
this.timeout(4 * 60 * 1000);
140+
133141
let insidersApp: Application | undefined = undefined;
134142
let stableApp: Application | undefined = undefined;
135143

0 commit comments

Comments
 (0)