summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/fs-vacuum/test/arguments.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/fs-vacuum/test/arguments.js')
-rw-r--r--deps/npm/node_modules/fs-vacuum/test/arguments.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/deps/npm/node_modules/fs-vacuum/test/arguments.js b/deps/npm/node_modules/fs-vacuum/test/arguments.js
index d77ce0627d..17ff2ee598 100644
--- a/deps/npm/node_modules/fs-vacuum/test/arguments.js
+++ b/deps/npm/node_modules/fs-vacuum/test/arguments.js
@@ -1,10 +1,10 @@
-var test = require("tap").test
+var test = require('tap').test
-var vacuum = require("../vacuum.js")
+var vacuum = require('../vacuum.js')
-test("vacuum throws on missing parameters", function (t) {
- t.throws(vacuum, "called with no parameters")
- t.throws(function () { vacuum("directory", {}) }, "called with no callback")
+test('vacuum throws on missing parameters', function (t) {
+ t.throws(vacuum, 'called with no parameters')
+ t.throws(function () { vacuum('directory', {}) }, 'called with no callback')
t.end()
})
@@ -12,12 +12,12 @@ test("vacuum throws on missing parameters", function (t) {
test('vacuum throws on incorrect types ("Forrest is pedantic" section)', function (t) {
t.throws(function () {
vacuum({}, {}, function () {})
- }, "called with path parameter of incorrect type")
+ }, 'called with path parameter of incorrect type')
t.throws(function () {
- vacuum("directory", "directory", function () {})
- }, "called with options of wrong type")
+ vacuum('directory', 'directory', function () {})
+ }, 'called with options of wrong type')
t.throws(function () {
- vacuum("directory", {}, "whoops")
+ vacuum('directory', {}, 'whoops')
}, "called with callback that isn't callable")
t.end()