cypress-select-tests
cypress-select-tests copied to clipboard
Code in before() runs even if test is not tagged and should be skipped
I've noticed an issue where code in the before() will still run for tests that should be skipped. Seems like it works as intended for the code in beforeEach().
Is anyone else having the same issue, and if so, is there a fix/workaround?
what's the test / block structure? Is this something like this?
before(() => {...})
onlyOn('...', () => {...})
before(() => {...})