Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
"test assert: edit to test case when foo is in path to git clone
"
  • Loading branch information
SwimmingSage committed Jul 26, 2017
commit 8bcca8fce93a0c78c8010d3935bcb746e611e528
2 changes: 1 addition & 1 deletion test/parallel/test-assert-fail.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ common.expectsError(() => {
// The stackFrameFunction should exclude the foo frame
assert.throws(
function foo() { assert.fail('first', 'second', 'message', '!==', foo); },
(err) => !/\sat\sfoo/.test(err.stack)
(err) => !/\sat\sfoo\b/.test(err.stack)
);