mirror of
https://github.com/penpot/penpot.git
synced 2026-01-22 21:30:09 -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 "$@";
|