calcom/cypress/integration/load.test.js

9 lines
163 B
JavaScript
Raw Normal View History

2021-09-02 16:41:15 +00:00
/// <reference types="cypress" />
describe("silly test", () => {
it("loads /", () => {
cy.visit("/");
cy.contains("Sign in to your account");
});
});