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