mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
81 lines
1.3 KiB
Bash
Executable File
81 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit on error
|
|
set -e
|
|
|
|
declare test_root=$PWD
|
|
|
|
# remove run directory before exit to prevent yarn.lock spoiling
|
|
function cleanup {
|
|
rm -rfd ${test_root}/run
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
fixtures_dir='fixtures'
|
|
teamcity=0
|
|
|
|
# parse command-line options
|
|
# '-f' sets fixtures directory
|
|
# '-t' adds teamcity reporting
|
|
while getopts ":tf:" opt; do
|
|
case $opt in
|
|
f)
|
|
fixtures_dir=$OPTARG
|
|
;;
|
|
t)
|
|
teamcity=1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# copy all files from fixtures directory to `run`
|
|
rm -rfd run
|
|
cp -r $fixtures_dir run
|
|
cd run
|
|
|
|
for dir in *
|
|
do
|
|
cd $dir
|
|
|
|
# run @storybook/cli
|
|
../../../bin/index.js init --skip-install
|
|
|
|
cd ..
|
|
done
|
|
|
|
cd ..
|
|
|
|
# install all the dependencies in a single run
|
|
cd ../../..
|
|
yarn install --non-interactive --silent --pure-lockfile
|
|
cd ${test_root}/run
|
|
|
|
for dir in *
|
|
do
|
|
# check that storybook starts without errors
|
|
cd $dir
|
|
|
|
if [ $teamcity -eq 1 ]
|
|
then
|
|
echo "##teamcity[testStarted name='$dir' captureStandardOutput='true']"
|
|
fi
|
|
|
|
echo "Running smoke test in $dir"
|
|
failed=0
|
|
yarn storybook --smoke-test --quiet || failed=1
|
|
|
|
if [ $teamcity -eq 1 ]
|
|
then
|
|
if [ $failed -eq 1 ]
|
|
then
|
|
echo "##teamcity[testFailed name='$dir']"
|
|
fi
|
|
echo "##teamcity[testFinished name='$dir']"
|
|
elif [ $failed -eq 1 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
cd ..
|
|
done
|