Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/tap/false-name.js')
-rw-r--r--test/tap/false-name.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/tap/false-name.js b/test/tap/false-name.js
index 89e890e37..1e2a4d43d 100644
--- a/test/tap/false-name.js
+++ b/test/tap/false-name.js
@@ -54,14 +54,14 @@ test('not every pkg.name can be required', function (t) {
function (err, code) {
t.ifErr(err, 'install finished without error')
t.equal(code, 0, 'install exited ok')
- t.ok(existsSync(path.join(
- pkg,
- 'node_modules','test-package-with-one-dep'
- )), 'test-package-with-one-dep installed OK')
- t.ok(existsSync(path.join(
- pkg,
- 'node_modules','test-package'
- )), 'test-pacakge subdep installed OK')
+ t.ok(
+ existsSync(path.join(pkg, 'node_modules', 'test-package-with-one-dep')),
+ 'test-package-with-one-dep installed OK'
+ )
+ t.ok(
+ existsSync(path.join(pkg, 'node_modules', 'test-package')),
+ 'test-pacakge subdep installed OK'
+ )
t.end()
}
)