We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f58748 commit 81bca1aCopy full SHA for 81bca1a
.gitlab-ci.yml
@@ -194,3 +194,7 @@ als:windows:
194
# In GitLab CI tests timeout more often on Windows, so we multiply
195
# testsuite timeouts by the following factor
196
ALS_WAIT_FACTOR: "2"
197
+
198
+vscode-extension:windows:
199
+ variables:
200
+ MOCHA_TIMEOUT: "30000"
integration/vscode/ada/test/general/tasks.test.ts
@@ -26,7 +26,8 @@ import {
26
import { runTaskAndGetResult } from '../../src/taskProviders';
27
28
suite('Task Providers', function () {
29
- this.timeout('15s');
+ // Set timeout to 15 seconds unless already configured to more
30
+ this.timeout(Math.max(this.timeout(), 15000));
31
32
let projectPath: string;
33
0 commit comments