Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions automation/run-e2e/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ services:
# Starts after mxbuild completes; "docker compose up --wait" blocks until healthy.
mxruntime:
image: mxruntime:${MENDIX_VERSION:?MENDIX_VERSION is required}
shm_size: "2gb"
depends_on:
mxbuild:
condition: service_completed_successfully
Expand Down
23 changes: 22 additions & 1 deletion automation/run-e2e/playwright.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,28 @@ module.exports = defineConfig({
baseURL: process.env.URL ? process.env.URL : "http://127.0.0.1:8080",

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: "on-first-retry"
trace: "on-first-retry",

launchOptions: {
args: [
"--disable-dev-shm-usage",
"--disable-extensions",
"--disable-background-networking",
"--disable-background-timer-throttling",
"--disable-renderer-backgrounding",
"--disable-sync",
"--disable-translate",
"--disable-default-apps",
"--disable-hang-monitor",
"--metrics-recording-only",
"--no-first-run",
"--font-render-hinting=none"
]
},

contextOptions: {
reducedMotion: "reduce"
}
},

/* Configure projects for major browsers */
Expand Down
Loading