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
17 lines
604 B
TypeScript
17 lines
604 B
TypeScript
export const SHAPES = [
|
|
{ type: 'geo', tool: 'rectangle' },
|
|
// { type: 'geo', tool: 'ellipse' },
|
|
// { type: 'geo', tool: 'triangle' },
|
|
// { type: 'geo', tool: 'diamond' },
|
|
// { type: 'geo', tool: 'pentagon' },
|
|
// { type: 'geo', tool: 'hexagon' },
|
|
// { type: 'geo', tool: 'octagon' },
|
|
// { type: 'geo', tool: 'star' },
|
|
// { type: 'geo', tool: 'rhombus' },
|
|
// { type: 'geo', tool: 'oval' },
|
|
// { type: 'geo', tool: 'trapezoid' },
|
|
// { type: 'geo', tool: 'arrow-right' },
|
|
// { type: 'geo', tool: 'arrow-left' },
|
|
// { type: 'geo', tool: 'arrow-up' },
|
|
// { type: 'geo', tool: 'arrow-down' },
|
|
]
|