File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,11 @@ branches:
7
7
cache :
8
8
directories :
9
9
- node_modules
10
+ install :
11
+ - |
12
+ if [ $TRAVIS_OS_NAME == "linux" ]; then
13
+ export DISPLAY=':99.0'
14
+ /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
15
+ fi
10
16
script :
11
- - npm run compile
17
+ - npm test
Original file line number Diff line number Diff line change @@ -5,8 +5,13 @@ async function main() {
5
5
try {
6
6
const extensionDevelopmentPath = path . resolve ( __dirname , '../../' ) ;
7
7
const extensionTestsPath = path . resolve ( __dirname , './suite/index' ) ;
8
+ const testWorkspace = path . resolve ( __dirname , './test-temp' ) ;
8
9
9
- await runTests ( { extensionDevelopmentPath, extensionTestsPath } ) ;
10
+ await runTests ( {
11
+ extensionDevelopmentPath,
12
+ extensionTestsPath,
13
+ launchArgs : [ testWorkspace ]
14
+ } ) ;
10
15
} catch ( err ) {
11
16
console . error ( 'Failed to run tests' ) ;
12
17
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments