mirror of
https://github.com/microsoft/playwright-java.git
synced 2025-08-30 09:07:07 +00:00
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/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
|