UNPKG

cypress-xml-reporter

Version:

A JUnit XML reporter for Cypress that includes screenshots, videos, and logs.

24 lines 479 B
/** * Nested Describe */ describe('TEST1', () => { it('case1', () => { }); it('case2', () => { }); it('case3', () => { expect(1).to.equal(2); }); describe('NEST1', () => { it('case1', () => { }); it('case2', () => { }); it('case3', () => { expect(1).to.equal(2); }) describe('NEST2', () => { it('case1', () => { }); it('case2', () => { }); it('case3', () => { expect(1).to.equal(2); }); }); }); });