We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d5fb5 commit cebfa85Copy full SHA for cebfa85
test/external-assertions/test.js
@@ -24,12 +24,12 @@ The expression evaluated to a falsy value:
24
AssertionError [ERR_ASSERTION]: The expression evaluated to a falsy value:
25
26
assert.ok(false)
27
-`.split('\n').map(line => line ? ` ${line}` : '').join('\n'),
+`.split('\n').map(line => line ? ` ${line}` : '').join('\n') + '\n',
28
`
29
false == true
30
31
AssertionError [ERR_ASSERTION]: false == true
32
-`.split('\n').map(line => line ? ` ${line}` : '').join('\n') + '\n',
+`.split('\n').map(line => line ? ` ${line}` : '').join('\n'),
33
);
34
}
35
0 commit comments