Files
element-web/packages/element-web-playwright-common/docker-entrypoint.sh
T
Michael Telatynski c3966aea82 Fix playwright-screenshots utility for native dependencies
Without this, a developer would need to both specify --with-node-modules && --entrypoint and provide a custom entrypoint to do the `yarn install`.
2026-01-23 17:15:49 +00: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 "$@"