We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deea9fd commit 2ed7587Copy full SHA for 2ed7587
1 file changed
test/suite.ts
@@ -3,13 +3,17 @@ import * as Mocha from 'mocha';
3
import * as glob from 'glob';
4
5
export function run(): Promise<void> {
6
+
7
+ console.log('Starting run()');
8
9
// Create the mocha test
10
const mocha = new Mocha({
11
ui: 'tdd'
12
});
13
//@ts-ignore: types are still for v7, not for v8
14
mocha.color(true);
15
16
+ console.log(`__dirname: ${__dirname}`)
17
const testsRoot = path.resolve(__dirname);
18
console.log(`testsRoot: ${testsRoot}`)
19
0 commit comments