2dbfda1285
Adds webdriver tests for testing from a users perspective via browser actions. We currently support local test runners for a bunch of actions on desktop `chrome`/`firefox`/`edge`/`safari` on macos. We also have a browserstack runner which we'll enable in another PR. ### Release Note - Adds initial webdriver tests
12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
export const IS_MAC_OS = process.platform === 'darwin'
|
|
|
|
export const WINDOW_SIZES = {
|
|
MOBILE_PORTRAIT: {
|
|
width: 414,
|
|
height: 796,
|
|
},
|
|
DESKTOP: {
|
|
width: 1200,
|
|
height: 800,
|
|
},
|
|
}
|