Files
blap/packages/playwright-common/docker-entrypoint.sh
T
2026-04-09 14:35:32 +01:00

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 "$@"