soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
165 Bytes
export function suite(description, tests) {
describe(description, () => {
before(() => {
cy.visit('/')
cy.vueCheckInit()
})
tests()
})
}