Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Aug 2, 2023
1 parent bfe077d commit 2e3d096
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/ops/concurrency-fork/async.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export default () => {
});
it('must default to the source on invalid handlers', async () => {
const input = [1, 2, 3];
const output = pipe(_async(input), concurrencyFork({onAsync: 123 as any}));
const output = pipe(
_async(input),
concurrencyFork({onAsync: 123 as any})
);
expect(await _asyncValues(output)).to.eql(input);
});
it('must return the result', async () => {
Expand Down

0 comments on commit 2e3d096

Please sign in to comment.