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 ac56b8e commit fffe3e9Copy full SHA for fffe3e9
1 file changed
tests/worker.spec.ts
@@ -509,7 +509,7 @@ test.group('Worker', () => {
509
})
510
511
test('should not retry timed out job when failOnTimeout is true', async ({ assert, cleanup }) => {
512
- assert.plan(2)
+ assert.plan(3)
513
514
let attempts = 0
515
@@ -557,6 +557,7 @@ test.group('Worker', () => {
557
const cycle = await worker.processCycle(['default'])
558
// @ts-ignore
559
assert.equal(cycle.type, 'idle')
560
+ assert.equal(attempts, 1)
561
562
563
test('should use global worker timeout when job timeout is not set', async ({
0 commit comments