10000
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 162a721 commit 1aa07c7Copy full SHA for 1aa07c7
assertion-testing/tests/default.js
@@ -5,20 +5,20 @@ TEST('controller.increment()', function() {
5
TEST('Test URL 1', '/1/', function(builder) {
6
builder.get();
7
builder.exec(function(err, response, output) {
8
- FAIL(output.response !== '1', name);
+ FAIL(output.response !== '1');
9
});
10
11
12
TEST('Test URL 2', '/2/', function(builder) {
13
14
15
- FAIL(output.response !== '2', name);
+ FAIL(output.response !== '2');
16
17
18
19
TEST('Test URL 3', '/3/', function(builder) {
20
builder.json({ data: 4 });
21
builder.exec(function(err, response) {
22
- FAIL(response.data !== 3, name);
+ FAIL(response.data !== 3);
23
24
0 commit comments