summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test-strict.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/test-strict.js b/test/test-strict.js
deleted file mode 100644
index 39c14bf..0000000
--- a/test/test-strict.js
+++ /dev/null
@@ -1,19 +0,0 @@
-// run like this:
-// node --harmony --use-strict test-strict.js
-
-var async = require('../lib/async');
-
-function hi() {
- let i = "abcd";
- for (let i = 0; i < 3; i++) {
- console.log(i);
- }
- console.log(i);
-}
-function hi2(){
- console.log("blah");
-}
-
-async.parallel([hi, hi2], function() {
- console.log("done");
-});