dot.dot.dot.exampol
This commit is contained in:
commit
a0bc2d79de
406 changed files with 34577 additions and 0 deletions
20
node_modules/tap/coverage-example/test/foo.test.js
generated
vendored
Normal file
20
node_modules/tap/coverage-example/test/foo.test.js
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
var test = require('tap').test,
|
||||
Foo = require('../lib/foo'),
|
||||
foo;
|
||||
|
||||
test('setup', function(t) {
|
||||
foo = new Foo('baz');
|
||||
t.ok(foo);
|
||||
t.end();
|
||||
});
|
||||
|
||||
test('bar', function(t) {
|
||||
t.equal('baz', foo.bar());
|
||||
t.end();
|
||||
});
|
||||
|
||||
test('teardown', function(t) {
|
||||
t.ok(true);
|
||||
t.end();
|
||||
});
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue