mirror of
https://github.com/coder/code-server.git
synced 2024-12-04 23:03:06 +08:00
eae5d8c807
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
const path = require('path');
|
|
const testRunner = require('../../../test/integration/electron/testrunner');
|
|
|
|
const options: any = {
|
|
ui: 'tdd',
|
|
useColors: (!process.env.BUILD_ARTIFACTSTAGINGDIRECTORY && process.platform !== 'win32'),
|
|
timeout: 60000
|
|
};
|
|
|
|
// These integration tests is being run in multiple environments (electron, web, remote)
|
|
// so we need to set the suite name based on the environment as the suite name is used
|
|
// for the test results file name
|
|
let suite = '';
|
|
if (process.env.VSCODE_BROWSER) {
|
|
suite = `${process.env.VSCODE_BROWSER} Browser Integration Notebook Tests`;
|
|
} else if (process.env.REMOTE_VSCODE) {
|
|
suite = 'Remote Integration Notebook Tests';
|
|
} else {
|
|
suite = 'Integration Notebook Tests';
|
|
}
|
|
|
|
if (process.env.BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
|
options.reporter = 'mocha-multi-reporters';
|
|
options.reporterOptions = {
|
|
reporterEnabled: 'spec, mocha-junit-reporter',
|
|
mochaJunitReporterReporterOptions: {
|
|
testsuitesTitle: `${suite} ${process.platform}`,
|
|
mochaFile: path.join(process.env.BUILD_ARTIFACTSTAGINGDIRECTORY, `test-results/${process.platform}-${process.arch}-${suite.toLowerCase().replace(/[^\w]/g, '-')}-results.xml`)
|
|
}
|
|
};
|
|
}
|
|
|
|
testRunner.configure(options);
|
|
|
|
export = testRunner;
|