Files
ThreadNet-Web/packages/element-web-playwright-common/docker-entrypoint.sh
T

9 lines
158 B
Bash
Raw Normal View History

#!/bin/bash
set -e
if [[ "$YARN_INSTALL" == "true" ]]; then
yarn install --frozen-lockfile
fi
npx playwright test --update-snapshots --reporter line "$@"