Files
JoshHeaps.Net/JoshHeaps.Net.UiTests/playwright.config.json
T

24 lines
501 B
JSON

{
"use": {
"headless": true,
"viewport": { "width": 1280, "height": 720 },
"ignoreHTTPSErrors": true,
"video": "retain-on-failure",
"screenshot": "only-on-failure"
},
"projects": [
{
"name": "chromium",
"use": { "browserName": "chromium" }
},
{
"name": "firefox",
"use": { "browserName": "firefox" }
}
],
"webServer": {
"command": "dotnet run --project ../JoshHeaps.Net",
"port": 7065,
"reuseExistingServer": true
}
}