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: update to prior commit, more specific regex
"
  • Loading branch information
SwimmingSage committed Jul 26, 2017
commit ed89e4beccf1d873222b2689d9cd744c43465c0e
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\b/.test(err.stack)
(err) => !/^\s*at\sfoo\b/.test(err.stack)
);