try to fix flaky linux tests on travis

This commit is contained in:
Benjamin Pasero 2017-07-13 08:07:41 +02:00
parent 1c0b640a66
commit d768111d14
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ const testRunner = require('vscode/lib/testrunner');
testRunner.configure({
ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.)
useColors: process.platform !== 'win32', // colored output from test results (only windows cannot handle)
timeout: 10000
timeout: 60000
});
export = testRunner;

View file

@ -22,7 +22,7 @@ const testRunner = require('vscode/lib/testrunner');
testRunner.configure({
ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.)
useColors: process.platform !== 'win32', // colored output from test results (only windows cannot handle)
timeout: 10000
timeout: 60000
});
export = testRunner;