Closed
Description
This issue stems from the conversation at fastify/fastify#5957 (review)
Given a test like:
test('a thing', (t) => {
t.plan(2)
doRequest('request 1', (error) => {
t.assert.ifError(error)
})
doRequest('request 2', (error) => {
t.assert.ifError(error)
})
})
The test should wait until the defined timeout for both asserts to resolve. If only one resolves within the time limit, the test should fail due to the plan not being completed. From the linked conversation, this is not happening.
Metadata
Metadata
Assignees
Labels
No labels