Skip to content

Commit 15716ad

Browse files
authored
chore: change Travis to run test (#1)
1 parent 3d28d49 commit 15716ad

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.travis.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,11 @@ branches:
77
cache:
88
directories:
99
- 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
1016
script:
11-
- npm run compile
17+
- npm test

src/test/runTest.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@ async function main() {
55
try {
66
const extensionDevelopmentPath = path.resolve(__dirname, '../../');
77
const extensionTestsPath = path.resolve(__dirname, './suite/index');
8+
const testWorkspace = path.resolve(__dirname, './test-temp');
89

9-
await runTests({ extensionDevelopmentPath, extensionTestsPath });
10+
await runTests({
11+
extensionDevelopmentPath,
12+
extensionTestsPath,
13+
launchArgs: [testWorkspace]
14+
});
1015
} catch (err) {
1116
console.error('Failed to run tests');
1217
process.exit(1);

0 commit comments

Comments
 (0)