Navigation Menu

Skip to content

Commit

Permalink
[Refactor] remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 10, 2020
1 parent 925bf01 commit cf8dccc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion example/throw.js
@@ -1,6 +1,5 @@
'use strict';

var falafel = require('falafel');
var test = require('../');

test('throw', function (t) {
Expand Down
7 changes: 0 additions & 7 deletions index.js
Expand Up @@ -13,11 +13,6 @@ var canExit = typeof process !== 'undefined' && process
&& typeof process.exit === 'function'
;

var nextTick = typeof setImmediate !== 'undefined'
? setImmediate
: process.nextTick
;

exports = module.exports = (function () {
var harness;
var lazyLoad = function () {
Expand Down Expand Up @@ -102,8 +97,6 @@ exports.Test = Test;
exports.test = exports; // tap compat
exports.test.skip = Test.skip;

var exitInterval;

function createHarness(conf_) {
if (!conf_) conf_ = {};
var results = createResult();
Expand Down

0 comments on commit cf8dccc

Please sign in to comment.