4d70170
1
2
3
4
5
6
7
8
9
10
export function suite(description, tests) { describe(description, () => { before(() => { cy.visit('/') cy.vueCheckInit() }) tests() }) }