mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-02 21:55:33 +01:00
17 lines
781 B
TypeScript
17 lines
781 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
var testRunner = require('vscode/lib/testrunner');
|
|
|
|
// You can directly control Mocha options by uncommenting the following lines
|
|
// See https://github.com/mochajs/mocha/wiki/Using-mocha-programmatically#set-options for more info
|
|
testRunner.configure({
|
|
ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.)
|
|
useColors: true // colored output from test results
|
|
});
|
|
|
|
module.exports = testRunner;
|
|
*/ |