mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
14 lines
333 B
Bash
Executable File
14 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
source ./initialize_test.sh && initialize_test "$@"
|
|
|
|
npm install ${PLAYWRIGHT_CORE_TGZ}
|
|
npm install ${PLAYWRIGHT_TGZ}
|
|
copy_test_scripts
|
|
|
|
OUTPUT="$(node validate-dependencies.js)"
|
|
if [[ "${OUTPUT}" != *"PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS"* ]]; then
|
|
echo "ERROR: validateDependencies was not called"
|
|
exit 1
|
|
fi
|
|
|