#!/bin/bash

# This file was automatically generated. DO NOT EDIT.
# Any changes made to this file will be overwritten.

if [ -f .env ]; then
  set -a; . ./.env; set +a;
fi

entrypoint=$1
if [ -e "$entrypoint" ]; then
  ./"$entrypoint"
fi

PLAYWRIGHT_COMMAND=${PLAYWRIGHT_COMMAND:-npx playwright test --reporter dot}
exec sh -c "$PLAYWRIGHT_COMMAND"