Checkpoint - WIP of cypress dev

This commit is contained in:
2022-07-25 08:55:29 -05:00
parent 536b4b0c91
commit d0b775ccf0
12 changed files with 517 additions and 1 deletions

12
cypress.config.ts Normal file
View File

@ -0,0 +1,12 @@
import {defineConfig} from "cypress";
export default defineConfig({
e2e: {
viewportHeight: 1000,
viewportWidth: 1200,
setupNodeEvents(on, config)
{
// implement node event listeners here
},
},
});