2022-02-12 04:06:37 +03:00
|
|
|
#!/bin/bash
|
|
|
|
source ./initialize_test.sh && initialize_test "$@"
|
|
|
|
|
2022-02-15 01:52:15 +03:00
|
|
|
npm_i playwright-core
|
|
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm_i playwright-firefox
|
|
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm_i playwright-webkit
|
|
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm_i playwright-chromium
|
2022-02-12 04:06:37 +03:00
|
|
|
|
|
|
|
BROWSERS="$(pwd -P)/browsers"
|
2022-02-15 01:52:15 +03:00
|
|
|
PLAYWRIGHT_BROWSERS_PATH="${BROWSERS}" npm_i playwright
|
2022-02-12 04:06:37 +03:00
|
|
|
if [[ ! -d "${BROWSERS}" ]]; then
|
|
|
|
echo "Directory for shared browsers was not created!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Running sanity.js"
|
|
|
|
# Every package should be able to launch.
|
|
|
|
PLAYWRIGHT_BROWSERS_PATH="${BROWSERS}" node sanity.js playwright-chromium all
|
|
|
|
PLAYWRIGHT_BROWSERS_PATH="${BROWSERS}" node sanity.js playwright-firefox all
|
|
|
|
PLAYWRIGHT_BROWSERS_PATH="${BROWSERS}" node sanity.js playwright-webkit all
|