mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 03:55:37 +01:00
13 lines
307 B
TypeScript
13 lines
307 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://localhost:3000",
|
|
},
|
|
// default username / password on init
|
|
env: {
|
|
syncfuse_user: "admin",
|
|
syncfuse_password: "syncfuse",
|
|
syncfuse_user_id: "41e2b680-648e-4b09-bcd7-3e2b10c06264",
|
|
},
|
|
});
|