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