From c09e7b9e2f1312da638e99168639bd9c6ae24e87 Mon Sep 17 00:00:00 2001 From: Cory Rivera Date: Mon, 13 Jan 2020 13:43:18 -0800 Subject: [PATCH] Increase timeouts for some integration tests. (#8869) --- extensions/integration-tests/src/index.ts | 2 +- extensions/notebook/src/integrationTest/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/integration-tests/src/index.ts b/extensions/integration-tests/src/index.ts index 517942fc3d..3295278159 100644 --- a/extensions/integration-tests/src/index.ts +++ b/extensions/integration-tests/src/index.ts @@ -12,7 +12,7 @@ const suite = getSuiteType(); const options: any = { ui: 'tdd', useColors: true, - timeout: 10000 + timeout: 600000 }; if (suite === SuiteType.Stress) { diff --git a/extensions/notebook/src/integrationTest/index.ts b/extensions/notebook/src/integrationTest/index.ts index 5ee2928d1d..7e7a9b53f2 100644 --- a/extensions/notebook/src/integrationTest/index.ts +++ b/extensions/notebook/src/integrationTest/index.ts @@ -11,7 +11,7 @@ const suite = 'notebook Extension Integration Tests'; const options: any = { ui: 'bdd', useColors: true, - timeout: 10000 + timeout: 600000 }; // set relevant mocha options from the environment