Skip to content

Commit 2ed7587

Browse files
committed
Log more info when running tests
1 parent deea9fd commit 2ed7587

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

test/suite.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@ import * as Mocha from 'mocha';
33
import * as glob from 'glob';
44

55
export function run(): Promise<void> {
6+
7+
console.log('Starting run()');
8+
69
// Create the mocha test
710
const mocha = new Mocha({
811
ui: 'tdd'
912
});
1013
//@ts-ignore: types are still for v7, not for v8
1114
mocha.color(true);
1215

16+
console.log(`__dirname: ${__dirname}`)
1317
const testsRoot = path.resolve(__dirname);
1418
console.log(`testsRoot: ${testsRoot}`)
1519

0 commit comments

Comments
 (0)