We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 333c636 commit e6b6f11Copy full SHA for e6b6f11
example/throw.js
@@ -1,4 +1,5 @@
1
-var falafel = require('falafel');
+'use strict';
2
+
3
var test = require('../');
4
5
test('throw', function (t) {
index.js
@@ -11,11 +11,6 @@ var canExit = typeof process !== 'undefined' && process
11
&& typeof process.exit === 'function'
12
;
13
14
-var nextTick = typeof setImmediate !== 'undefined'
15
- ? setImmediate
16
- : process.nextTick
17
-;
18
-
19
exports = module.exports = (function () {
20
var harness;
21
var lazyLoad = function () {
@@ -100,8 +95,6 @@ exports.Test = Test;
100
95
exports.test = exports; // tap compat
101
96
exports.test.skip = Test.skip;
102
97
103
-var exitInterval;
104
105
98
function createHarness(conf_) {
106
99
if (!conf_) conf_ = {};
107
var results = createResult();
0 commit comments