
- add new fields to support this - when free: - fade out all event types after first - hide events after first on booking page - make booking page after the first one 404 if accessed directly - add e2e tests
6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
describe("smoke test", () => {
|
|
it("loads /", () => {
|
|
cy.visit("/");
|
|
cy.contains("Sign in to your account");
|
|
});
|
|
});
|