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
9 lines
190 B
Bash
Executable file
9 lines
190 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
mode="${1:-local}"
|
|
export BROWSERS="${2:-chrome}"
|
|
# if [[ "$mode" == "remote" ]]; then
|
|
# export ENABLE_SSL=1
|
|
# fi
|
|
yarn workspace @tldraw/e2e "test:${mode}"
|