Skip to content

Commit

Permalink
fix: extend timeout for build test
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalygashkov committed Jul 22, 2024
1 parent cc13977 commit bb06083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/build.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test('test executable run with Okko', async () => {
if (hasSearchTarget(line)) resolve(line);
});
executable.stderr.on('data', (error: Buffer) => error && console.log(error.toString()));
setTimeout(() => resolve(lines.find(hasSearchTarget)), 3_000);
setTimeout(() => resolve(lines.find(hasSearchTarget)), 4_500);
});
expect(result).toBeDefined();
expect(result).toContain(searchTarget);
Expand Down

0 comments on commit bb06083

Please sign in to comment.