Skip to content

Commit deea9fd

Browse files
committed
Log more info when running tests
1 parent 7942d0e commit deea9fd

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

test/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ import { runTests } from 'vscode-test';
55
async function main() {
66
try {
77
// The paths are relative from the `/out/test` folder.
8+
89
const extensionDevelopmentPath = path.resolve(__dirname, '../../');
10+
console.log(`extensionDevelopmentPath: ${extensionDevelopmentPath}`);
911
const extensionTestsPath = path.resolve(__dirname, './suite');
12+
console.log(`extensionTestsPath: ${extensionTestsPath}`);
1013

1114
// Download VS Code, unzip it and run the integration test
1215
await runTests({

test/suite.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export function run(): Promise<void> {
1111
mocha.color(true);
1212

1313
const testsRoot = path.resolve(__dirname);
14+
console.log(`testsRoot: ${testsRoot}`)
1415

1516
return new Promise((c, e) => {
1617
glob('**/**.test.js', { cwd: testsRoot }, (err, files) => {

0 commit comments

Comments
 (0)