Skip to content

Commit 8de831f

Browse files
authored
chore(fix): replace with exact comparison function (#4925)
1 parent 83ed8d0 commit 8de831f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lib/commands/exec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ t.test('npm exec foo, not present locally but in central loc', async t => {
473473
await exec.exec(['foo', 'one arg', 'two arg'])
474474
t.strictSame(MKDIRPS, [installDir], 'need to make install dir')
475475
t.match(ARB_CTOR, [{ path }])
476-
t.match(ARB_REIFY, [], 'no need to install again, already there')
476+
t.strictSame(ARB_REIFY, [], 'no need to install again, already there')
477477
t.equal(PROGRESS_ENABLED, true, 'progress re-enabled')
478478
const PATH = `${resolve(installDir, 'node_modules', '.bin')}${delimiter}${process.env.PATH}`
479479
t.match(RUN_SCRIPTS, [

0 commit comments

Comments
 (0)