build-system/test/index.js

10 lines
262 B
JavaScript
Raw Permalink Normal View History

2018-12-21 14:08:14 +08:00
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