Skip to content

Commit c6c469e

Browse files
Merge pull request #365 from feathersjs-ecosystem/changes
Add launch.json for mocha tests & fix typescript error.
2 parents f6ede67 + d468cda commit c6c469e

File tree

3 files changed

+46
-20
lines changed

3 files changed

+46
-20
lines changed

.vscode/launch.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Mocha Tests",
11+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
12+
"args": [
13+
"-u",
14+
"bdd",
15+
"--timeout",
16+
"999999",
17+
"--colors",
18+
"${workspaceFolder}/test"
19+
],
20+
"internalConsoleOptions": "openOnSessionStart",
21+
"skipFiles": [
22+
"<node_internals>/**"
23+
]
24+
}
25+
]
26+
}

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"@feathersjs/socketio": "^4.4.1",
7474
"@types/mongoose": "^5.5.32",
7575
"chai": "^4.2.0",
76-
"dtslint": "^2.0.2",
76+
"dtslint": "^2.0.3",
7777
"istanbul": "^1.1.0-alpha.1",
7878
"mocha": "^6.2.2",
7979
"mongoose": "^5.4.0",

0 commit comments

Comments
 (0)