Add playwright tests with github actions

This commit is contained in:
jheaps
2025-09-24 13:48:20 -06:00
parent 7d4aff5db2
commit b425c4d5d6
14 changed files with 868 additions and 5 deletions
@@ -0,0 +1,24 @@
{
"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
}
}