Skip to content

Commit

Permalink
fix: remove sleep to solve compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaixhin committed Nov 3, 2015
1 parent 56a7ff9 commit dc27cdd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"mz": "^2.1.0",
"request-promise": "^1.0.2",
"rimraf": "^2.4.3",
"sleep": "^3.0.0",
"ws": "^0.8.0"
},
"devDependencies": {
Expand Down
4 changes: 0 additions & 4 deletions test/rand.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
var fs = require("mz/fs");
var path = require("path");
var _ = require("lodash");
var sleep = require("sleep");

console.log("Program started");

Expand All @@ -14,9 +13,6 @@ for (var i = 3; i < process.argv.length; i += 2) {
console.log("Options: ");
console.log(opts);

// Artificial sleep for 5s
sleep.sleep(5);

// Make results directory
if (!fs.existsSync("experiments")) {
fs.mkdirSync("experiments");
Expand Down

0 comments on commit dc27cdd

Please sign in to comment.