Skip to content

Commit

Permalink
Merge pull request #365 from feathersjs-ecosystem/changes
Browse files Browse the repository at this point in the history
Add launch.json for mocha tests & fix typescript error.
  • Loading branch information
marshallswain authored Jan 5, 2020
2 parents f6ede67 + d468cda commit c6c469e
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 20 deletions.
26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"bdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test"
],
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**"
]
}
]
}
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"@feathersjs/socketio": "^4.4.1",
"@types/mongoose": "^5.5.32",
"chai": "^4.2.0",
"dtslint": "^2.0.2",
"dtslint": "^2.0.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.2.2",
"mongoose": "^5.4.0",
Expand Down

0 comments on commit c6c469e

Please sign in to comment.