pull/19/head
宇天 2018-12-17 11:46:31 +08:00
parent f8ccaad8a6
commit 5d143cb4fe
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -12,4 +12,5 @@
package-lock.json package-lock.json
node_modules node_modules
.vscode-test
*.vsix *.vsix

View File

@ -1,4 +1,5 @@
.vscode/** .vscode/**
.vscode-test/**
package-lock.json package-lock.json
.gitignore .gitignore

9
test/index.js Normal file
View File

@ -0,0 +1,9 @@
const testRunner = require('vscode/lib/testrunner')
testRunner.configure({
ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.)
useColors: true, // colored output from test results
timeout: 10000
})
module.exports = testRunner