mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
},
|
|
env: {
|
|
umami_user: 'admin',
|
|
umami_password: 'pennydoodoo',
|
|
},
|
|
});
|