umami/cypress.config.ts

13 lines
236 B
TypeScript
Raw Normal View History

2024-02-28 06:41:34 +01:00
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
},
2024-03-06 20:36:40 +01:00
// default username / password on init
env: {
umami_user: 'admin',
umami_password: 'umami',
},
2024-02-28 06:41:34 +01:00
});