Skip to content

Commit

Permalink
add timezone emulation
Browse files Browse the repository at this point in the history
  • Loading branch information
steffenheger committed Sep 17, 2024
1 parent 4d938e2 commit 3a4989a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ export default defineConfig({
// reuseExistingServer: true
// },
// use: {
// baseURL: 'http://localhost:5173/'
// baseURL: 'http://localhost:5173/',
// locale: 'de-DE',
// timezoneId: 'Europe/Berlin',
// },
webServer: {
command: 'docker compose up prima',
Expand All @@ -17,7 +19,9 @@ export default defineConfig({
reuseExistingServer: true
},
use: {
baseURL: 'http://localhost:8080/'
baseURL: 'http://localhost:8080/',
locale: 'de-DE',
timezoneId: 'Europe/Berlin',
},
testDir: './tests',
projects: [
Expand Down

0 comments on commit 3a4989a

Please sign in to comment.