9 lines
158 B
Bash
Executable File
9 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$YARN_INSTALL" == "true" ]]; then
|
|
yarn install --frozen-lockfile
|
|
fi
|
|
|
|
npx playwright test --update-snapshots --reporter line "$@" |