update
parent
f8ccaad8a6
commit
5d143cb4fe
|
@ -12,4 +12,5 @@
|
|||
package-lock.json
|
||||
|
||||
node_modules
|
||||
.vscode-test
|
||||
*.vsix
|
|
@ -1,4 +1,5 @@
|
|||
.vscode/**
|
||||
.vscode-test/**
|
||||
package-lock.json
|
||||
.gitignore
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue