@revoloo/cypress6
Version:
Cypress.io end to end testing tool
32 lines (26 loc) • 530 B
JavaScript
describe('suite', () => {
describe('nested suite 1', () => {
it('test 1', () => {
cy.visit('the://url')
})
it('test 2', () => {
cy.visit('the://url')
})
})
describe.only('nested suite 2', () => {
it('test 3', () => {
cy.visit('the://url')
})
it('test 4', () => {
cy.visit('the://url')
})
})
describe.only('nested suite 3', () => {
it('test 5', () => {
cy.visit('the://url')
})
it('test 6', () => {
cy.visit('the://url')
})
})
})