Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Aug 1, 2019
1 parent 3575d39 commit 852a4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ test.serial('buffer: false > promise does not resolve when output is big and "al
});

test('can mix promise and streams', async t => {
const promise = execa('noop', ['test']);
const promise = execa('noop', ['test'], {all: true});
await pEvent(promise, 'exit');
const {stdout, all} = await promise;
t.is(stdout, 'test');
Expand Down

0 comments on commit 852a4c1

Please sign in to comment.