13 lines
159 B
Bash
Executable File
13 lines
159 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# npx playwright test
|
|
npx playwright --version
|
|
|
|
npx playwright test --ui
|
|
|
|
npx playwright show-report --host 0.0.0.0
|
|
|
|
echo "done"
|