aboutsummaryrefslogtreecommitdiff
path: root/cypress.config.ts
blob: c1100467d2cf42ec367dce917da361b46e65066a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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',
  },
});