-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.vscode-test.js
More file actions
31 lines (29 loc) · 1.15 KB
/
.vscode-test.js
File metadata and controls
31 lines (29 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
const { defineConfig } = require('@vscode/test-cli');
const path = require('path');
module.exports = defineConfig([
{
label: 'Integration Tests',
files: 'out/test/**/*.test.js',
extensionDevelopmentPath: '.',
installExtensions: ['ms-vscode.azure-account', 'ms-azuretools.vscode-azureresourcegroups'],
env: {
DEBUGTELEMETRY: 'v',
},
mocha: {
ui: 'tdd',
timeout: 20000,
color: true,
reporter: 'mocha-multi-reporters',
reporterOptions: {
reporterEnabled: 'spec, mocha-junit-reporter',
mochaJunitReporterReporterOptions: {
mochaFile: path.resolve(__dirname, '..', '..', 'test-results.xml'),
},
},
},
},
]);