/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v21.2.10
scripts/circleci/run-browserstack-tests.sh
27 строк
699 B
Paul Gschwendtner
build: clear usages of `yarn` and update documentation
15 апр 2025, 09:37
15 апр 2025, 09:37
36a6667
Код
Авторство
О чём код?
#!/bin/bash # In case any command failed, we want to immediately exit the script with the # proper exit code. set -e # Path to the project directory. projectDir="$(dirname ${0})/../.." # Go to project directory. cd ${projectDir} # Decode access token and make it accessible for child processes. export BROWSER_STACK_ACCESS_KEY=`echo ${BROWSER_STACK_ACCESS_KEY}` # Setup the test platform environment variable that will be read # by the Karma configuration script. export TEST_PLATFORM="browserstack" # Build the legacy tests node ./scripts/create-legacy-tests-bundle.mjs # Run Karma pnpm karma start ./test/karma.conf.js --single-run # Wait for all sub processes to terminate properly. wait