Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
chore: Add debug option for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michalholasek committed Jan 31, 2018
1 parent d1bcbb1 commit 94738fb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.1.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 5858
}
]
}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"prepare": "npm run build",
"pretest": "npm run build",
"semantic-release": "scripts/semantic-release.sh",
"test": "mocha \"test/**/*-test.coffee\"",
"test:coverage": "scripts/coverage.sh"
"test": "mocha \"test/**/*-test.js\"",
"test:coverage": "scripts/coverage.sh",
"test:debug": "mocha --debug-brk \"test/**/*-test.js\""
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 94738fb

Please sign in to comment.