Added some tests
This commit is contained in:
7
tests/node_modules/tape/example/stream/test/x_fail.js
generated
vendored
Normal file
7
tests/node_modules/tape/example/stream/test/x_fail.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
var test = require('../../../');
|
||||
test(function (t) {
|
||||
t.plan(1);
|
||||
t.equal('beep', 'boop');
|
||||
});
|
||||
13
tests/node_modules/tape/example/stream/test/y.js
generated
vendored
Normal file
13
tests/node_modules/tape/example/stream/test/y.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
var test = require('../../../');
|
||||
test(function (t) {
|
||||
t.plan(2);
|
||||
t.equal(1 + 1, 2);
|
||||
t.ok(true);
|
||||
});
|
||||
|
||||
test('wheee', function (t) {
|
||||
t.ok(true);
|
||||
t.end();
|
||||
});
|
||||
Reference in New Issue
Block a user