Skip to content

Commit e6b6f11

Browse files
committed
[Refactor] remove unused code
1 parent 333c636 commit e6b6f11

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

example/throw.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
var falafel = require('falafel');
1+
'use strict';
2+
23
var test = require('../');
34

45
test('throw', function (t) {

index.js

-7
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ var canExit = typeof process !== 'undefined' && process
1111
&& typeof process.exit === 'function'
1212
;
1313

14-
var nextTick = typeof setImmediate !== 'undefined'
15-
? setImmediate
16-
: process.nextTick
17-
;
18-
1914
exports = module.exports = (function () {
2015
var harness;
2116
var lazyLoad = function () {
@@ -100,8 +95,6 @@ exports.Test = Test;
10095
exports.test = exports; // tap compat
10196
exports.test.skip = Test.skip;
10297

103-
var exitInterval;
104-
10598
function createHarness(conf_) {
10699
if (!conf_) conf_ = {};
107100
var results = createResult();

0 commit comments

Comments
 (0)