Skip to content

Commit

Permalink
Fix defaultViewport
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Jul 18, 2024
1 parent 56614a3 commit 63a1d7a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ export const launchBrowserWithExtension = async (extensionPath: string): Promise
`--disable-extensions-except=${extensionPath}`,
`--load-extension=${extensionPath}`,
'--window-size=1920,1080'
]
],
defaultViewport: {
width: 1920,
height: 1080
}
});
};

Expand Down

0 comments on commit 63a1d7a

Please sign in to comment.