Skip to content

Commit aa7de58

Browse files
committed
[Tests] increase coverage
1 parent 77952d0 commit aa7de58

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

test/exposed-harness.js

+4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ var tap = require('tap');
66
tap.test('main harness object is exposed', function (tt) {
77
tt.equal(typeof tape.getHarness, 'function', 'tape.getHarness is a function');
88

9+
tt.equal(typeof tape.run, 'function', 'tape.run is a function');
10+
911
tt.equal(tape.getHarness()._results.pass, 0);
1012

13+
tt.equal(tape.getHarness().run, undefined, 'tape.getHarness().run is undefined (wait not called)');
14+
1115
tt.end();
1216
});

test/wait.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'use strict';
2+
3+
var tape = require('../');
4+
var tap = require('tap');
5+
6+
tap.test('tape.wait()', function (tt) {
7+
tt.equal(typeof tape.getHarness, 'function', 'tape.getHarness is a function');
8+
9+
tt.equal(typeof tape.run, 'function', 'tape.run is a function');
10+
11+
tape.wait();
12+
13+
tt.equal(typeof tape.getHarness().run, 'function', 'tape.getHarness().run is a function (wait called)');
14+
15+
tt.end();
16+
});

0 commit comments

Comments
 (0)