Skip to content

Commit 9ee8421

Browse files
author
James Halliday
committed
failing undef test
1 parent 984b21f commit 9ee8421

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

test/undef.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
var tape = require('../');
2+
var tap = require('tap');
3+
var concat = require('concat-stream');
4+
5+
tap.test('array test', function (tt) {
6+
tt.plan(1);
7+
8+
var test = tape.createHarness();
9+
test.createStream().pipe(concat(function (body) {
10+
tt.equal(
11+
body.toString('utf8'),
12+
'TAP version 13\n'
13+
+ '# undef\n'
14+
+ 'not ok 1 should be equivalent\n'
15+
+ ' ---\n'
16+
+ ' operator: deepEqual\n'
17+
+ ' expected: { beep: undefined }\n'
18+
+ ' actual: {}\n'
19+
+ ' ...\n'
20+
+ '\n'
21+
+ '1..1\n'
22+
+ '# tests 1\n'
23+
+ '# pass 0\n'
24+
+ '# fail 1\n'
25+
);
26+
}));
27+
28+
test('undef', function (t) {
29+
t.plan(1);
30+
t.deepEqual({}, { beep: undefined });
31+
});
32+
});

0 commit comments

Comments
 (0)