all
config.
Examples of incorrect code for this rule:
describe('my tests', () => {
if (true) {
it('is awesome', () => {
doTheThing()
})
}
})
Examples of correct code for this rule:
describe('my tests', () => {
it('is awesome', () => {
doTheThing()
})
})