build-system/test/index.js

10 lines
262 B
JavaScript

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
🔥 类似sublime的Build System功能, 方便快速调试一些代码片断或想法。
JavaScript 96.6%
Python 2.2%
Dart 0.7%
PHP 0.5%