mirror of
https://github.com/microsoft/playwright-java.git
synced 2025-09-08 21:01:00 +00:00
11 lines
188 B
Bash
11 lines
188 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set +x
|
||
|
|
||
|
trap "cd $(pwd -P)" EXIT
|
||
|
cd "$(dirname $0)"
|
||
|
|
||
|
echo "Running TestApp..."
|
||
|
mvn compile exec:java -e -Dexec.mainClass=com.microsoft.playwright.testclifatjar.TestApp
|