Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Bump the tap version #53

Merged
merged 2 commits into from
Oct 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"devDependencies": {
"eslint": "^3.10.2",
"nlm": "^3.0.0",
"tap": "^7.1.2"
"tap": "^10.7.0"
},
"author": {
"name": "Jan Krems",
Expand Down
4 changes: 2 additions & 2 deletions test/cli/break.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ test('sb before loading file', (t) => {

return cli.waitForInitialBreak()
.then(() => cli.waitForPrompt())
.then(() => cli.command('sb("other.js", 3)'))
.then(() => cli.command('sb("other.js", 2)'))
.then(() => {
t.match(
cli.output,
Expand All @@ -145,7 +145,7 @@ test('sb before loading file', (t) => {
.then(() => {
t.match(
cli.output,
`break in ${otherScript}:3`,
`break in ${otherScript}:2`,
'found breakpoint in file that was not loaded yet');
})
.then(() => cli.quit())
Expand Down