Skip to content

Commit

Permalink
remove unused vars from bin/_mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed May 4, 2018
1 parent 927f1fd commit 6a46fa0
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions bin/_mocha
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env node
'use strict';

/* eslint no-unused-vars: off */

/**
* Module dependencies.
*/
Expand All @@ -25,10 +23,7 @@ const mocha = new Mocha();
* Save timer references to avoid Sinon interfering (see GH-237).
*/

const Date = global.Date;
const setTimeout = global.setTimeout;
const setInterval = global.setInterval;
const clearTimeout = global.clearTimeout;
const clearInterval = global.clearInterval;

/**
Expand Down Expand Up @@ -138,15 +133,6 @@ let globals = [];

const requires = [];

/**
* Images.
*/

const images = {
fail: path.join(__dirname, '..', 'assets', 'growl', 'error.png'),
pass: path.join(__dirname, '..', 'assets', 'growl', 'ok.png')
};

// options

program
Expand Down

0 comments on commit 6a46fa0

Please sign in to comment.