Skip to content

Commit dbb6474

Browse files
committed
Remove stdout from expected tags
1 parent a932522 commit dbb6474

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/05-commands.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ test('pear shift --json <source> <destination>', async function ({ plan, is, ali
380380
await running.inspector.evaluate('__PEAR_TEST__.ipc.close()', { returnByValue: false })
381381
await running.inspector.close()
382382

383-
alike(tags, ['moving', 'stdout', 'complete', 'final'], 'should output correct tags')
383+
alike(tags, ['moving', 'complete', 'final'], 'should output correct tags')
384384
is(fs.existsSync(path.join(appStorage2, 'test.txt')), true, 'should move app storage file to destination')
385385
const { code } = await running.until.exit
386386
is(code, 0, 'should have exit code 0')
@@ -539,7 +539,7 @@ test('pear shift --force --json <source> <destination>', async function ({ plan,
539539
await running.inspector.evaluate('__PEAR_TEST__.ipc.close()', { returnByValue: false })
540540
await running.inspector.close()
541541

542-
alike(tags, ['moving', 'stdout', 'complete', 'final'], 'should output correct tags')
542+
alike(tags, ['moving', 'complete', 'final'], 'should output correct tags')
543543
is(fs.existsSync(path.join(appStorage2, 'test.txt')), true, 'should move app storage file to destination')
544544
is(fs.existsSync(path.join(appStorage2, 'testold.txt')), false, 'should delete existing app storage file at destination')
545545
const { code } = await running.until.exit

0 commit comments

Comments
 (0)