forked from Klaveness-Digital/cypress-cucumber-preprocessor
-
-
Notifications
You must be signed in to change notification settings - Fork 153
Closed
Description
Current behavior
'BeforeAll' of all other specs is running on a specific spec, where it contains only one 'BeforeAll'.
Desired behavior
Only the 'BeforeAll' of the specified spec runs in the tests.
Test code to reproduce
BeforeAll(() => {
cy.login('######@####.com.br', '######');
createProject().then((data) => {
projectIdentifier = data.identificador;
});
});
Given('[atividade] entrar na rota {string}', (route: string) => {
cy.visitAndwait(`${route}/${projectIdentifier}`);
cy.checkDomLoaded();
atividades.validateVisibleAtividades();
});Versions
- Cypress version: 13.10.0
- Preprocessor version: 20.0.5
- Node version: 20.14
Checklist
- [ x ] I've read the FAQ.
- [ x ] I've read instructions for logging issues.
- [ x ] I'm not using
[email protected](package name has changed and it is no longer the most recent version, see #689).
Metadata
Metadata
Assignees
Labels
No labels

