6 lines
140 B
Bash
6 lines
140 B
Bash
#!/bin/sh
|
|
|
|
PY_SPECFLAG=${PY_SPECFLAG:-""}
|
|
PY_MODE=${PY_MODE:-"--ui"}
|
|
# Führe Playwright-Tests aus
|
|
npx playwright test $PY_MODE $PY_SPECFLAG |