Skip to content

Commit

Permalink
Adjusted env vars.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmiseev committed Mar 29, 2024
1 parent 1392652 commit b15c507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export default defineConfig({
openMode: 0,
},
},
viewportWidth: parseInt(process.env.VIEWPORT_WIDGTH ?? '1000', 10),
viewportHeight: parseInt(process.env.VIEWPORT_HEIGHT ?? '660', 10),
viewportWidth: parseInt(process.env.VIEWPORT_WIDGTH ?? '1920', 10),
viewportHeight: parseInt(process.env.VIEWPORT_HEIGHT ?? '1080', 10),
});

function getEnvVar(primary: string, fallback: string): string {
Expand Down

0 comments on commit b15c507

Please sign in to comment.