Closed
Description
Given you have a .only on a suite, and have an error thrown outside a test:
import './setup'
describe.only('suite', ()=>{
it('t1', ()=>{
})
it('t2', ()=>{
})
})
throw new Error('my error')
Current Behavior:
Cypress does not generate a new test for the uncaught failure, but says no tests are found.
Bug since: unknown
(originally found during feature work)