basic e2e tests

This commit is contained in:
Owen Rees
2023-06-08 13:37:28 +02:00
parent c5aac42344
commit b038d3fee8
10 changed files with 150 additions and 25 deletions
+10
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
},
},
});