Add basic test for landing page

This commit is contained in:
Alexander Navarro 2023-11-27 19:52:08 -03:00
parent ea22c57f41
commit 5a4c64ed21
9 changed files with 1135 additions and 86 deletions

10
cypress.config.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});