tldraw/e2e/test/specs/constants.ts
Orange Mug 2dbfda1285
Added initial webdriver tests (#1337)
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
2023-05-09 20:21:45 +00:00

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' },
]