Skip to content

feat: Implement basic e2e scenario #7199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 21 commits into from
Closed
Prev Previous commit
Next Next commit
video resolution
  • Loading branch information
mtojek committed Apr 20, 2023
commit 4e3f6839167f10a226f3c50652bf3230536d91b3
6 changes: 5 additions & 1 deletion site/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ const config: PlaywrightTestConfig = {
globalSetup: require.resolve("./globalSetup"),
use: {
baseURL: `http://localhost:${port}`,
video: "retain-on-failure",
video: {
mode: "retain-on-failure",
size: { width: 1280, height: 768 },
},
viewport: { width: 1280, height: 768 },
},
webServer: {
command: `go run -tags embed ${coderMain} server --global-config $(mktemp -d -t e2e-XXXXXXXXXX)`,
Expand Down