We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac210e commit bcc5f63Copy full SHA for bcc5f63
tests/specs/cli.ts
@@ -231,7 +231,10 @@ export default testSuite(({ describe }, node: NodeApis) => {
231
`${signal} HANDLER COMPLETED`,
232
]);
233
}
234
- }, 10_000);
+ }, {
235
+ timeout: 10_000,
236
+ retry: 3,
237
+ });
238
239
});
240
@@ -297,7 +300,10 @@ export default testSuite(({ describe }, node: NodeApis) => {
297
300
// This is the exit code I get from testing manually with Node
298
301
expect(result.exitCode).toBe(137);
299
302
303
304
305
306
307
308
describe('Ctrl + C', ({ test }) => {
309
const CtrlC = '\u0003';
0 commit comments