aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/files-and-ignores.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/files-and-ignores.js')
-rw-r--r--deps/npm/test/tap/files-and-ignores.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/deps/npm/test/tap/files-and-ignores.js b/deps/npm/test/tap/files-and-ignores.js
index a8f4b222b8..88d9d12922 100644
--- a/deps/npm/test/tap/files-and-ignores.js
+++ b/deps/npm/test/tap/files-and-ignores.js
@@ -404,7 +404,8 @@ test('certain files ignored unconditionally', function (t) {
'.npmrc',
'.foo.swp',
'.DS_Store',
- '._ohno'
+ '._ohno',
+ 'foo.orig'
]
}),
'.git': Dir({foo: File('')}),
@@ -421,7 +422,8 @@ test('certain files ignored unconditionally', function (t) {
'.foo.swp': File(''),
'.DS_Store': Dir({foo: File('')}),
'._ohno': File(''),
- '._ohnoes': Dir({noes: File('')})
+ '._ohnoes': Dir({noes: File('')}),
+ 'foo.orig': File('')
})
)
withFixture(t, fixture, function (done) {
@@ -440,6 +442,7 @@ test('certain files ignored unconditionally', function (t) {
t.notOk(fileExists('.DS_Store'), '.DS_Store not included')
t.notOk(fileExists('._ohno'), '._ohno not included')
t.notOk(fileExists('._ohnoes'), '._ohnoes not included')
+ t.notOk(fileExists('foo.orig'), 'foo.orig not included')
done()
})
})