mirror of
https://github.com/penpot/penpot.git
synced 2026-01-17 10:50:06 -05:00
10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$(dirname $0);
|
|
|
|
set -ex
|
|
|
|
$SCRIPT_DIR/setup;
|
|
|
|
yarn run test:e2e -x --workers=2 --reporter=list "$@";
|