mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
13 lines
315 B
Bash
13 lines
315 B
Bash
![]() |
#!/bin/bash
|
||
|
source ./initialize_test.sh && initialize_test "$@"
|
||
|
|
||
|
npm install ${PLAYWRIGHT_CORE_TGZ}
|
||
|
npm install ${PLAYWRIGHT_TGZ}
|
||
|
|
||
|
OUTPUT="$(node validate-dependencies.js)"
|
||
|
if [[ "${OUTPUT}" != *"PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS"* ]]; then
|
||
|
echo "ERROR: validateDependencies was not called"
|
||
|
exit 1
|
||
|
fi
|
||
|
|