add cypress docker compose file

This commit is contained in:
Francis Cao
2024-02-28 15:01:13 -08:00
parent 59f4d9aff8
commit 44d8606d1a
4 changed files with 69 additions and 11 deletions

11
cypress/cypress.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
},
env: {
umami_user: 'admin',
umami_password: 'pennydoodoo',
},
});