Skip to content

Commit 1751379

Browse files
dklilleyGitHub Enterprise
authored andcommitted
Merge pull request mathworks#42 from development/dlilley.test-unittests
Mocha setup and initial unit tests
2 parents 1079efc + 4068c4a commit 1751379

File tree

7 files changed

+1004
-23
lines changed

7 files changed

+1004
-23
lines changed

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"args": [
6+
"-u",
7+
"bdd",
8+
"--timeout",
9+
"999999",
10+
"--colors",
11+
"${workspaceFolder}/tests/**/*.test.ts",
12+
],
13+
"internalConsoleOptions": "openOnSessionStart",
14+
"name": "Mocha Tests",
15+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
16+
"request": "launch",
17+
"skipFiles": [
18+
"<node_internals>/**"
19+
],
20+
"type": "node"
21+
}
22+
23+
]
24+
}

0 commit comments

Comments
 (0)