mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
},
|
|
// default username / password on init
|
|
env: {
|
|
umami_user: 'admin',
|
|
umami_password: 'umami',
|
|
},
|
|
});
|