forked from cms/tibi-svelte-starter
23 lines
425 B
JavaScript
23 lines
425 B
JavaScript
|
/// <reference types="cypress" />
|
||
|
|
||
|
const { before } = require("../../support")
|
||
|
|
||
|
// @ts-check
|
||
|
|
||
|
describe("renz einfo auth", () => {
|
||
|
beforeEach(() => {
|
||
|
before()
|
||
|
})
|
||
|
|
||
|
afterEach(function () {
|
||
|
if (this.currentTest.state === "failed") {
|
||
|
cy.setCookie("shouldSkip", "true")
|
||
|
Cypress.runner.stop()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
it("can visit homepage", () => {
|
||
|
cy.visit("/")
|
||
|
})
|
||
|
})
|