UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

16 lines (13 loc) 248 B
describe('outer suite', () => { it.skip('test 1', () => { cy.log('testBody 1') }) describe('inner suite', () => { before(() => { cy.log('beforeHook 1') }) it('test 2', () => { cy.log('testBody 2') }) }) })