mirror of
https://github.com/mikecao/umami.git
synced 2025-05-09 07:03:23 +08:00
14 lines
295 B
TypeScript
14 lines
295 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',
|
|
umami_user_id: '41e2b680-648e-4b09-bcd7-3e2b10c06264',
|
|
},
|
|
});
|