storybook/lib/cli/test/run_tests.sh
Yann Braga 1f791402f3 feat(cli): automatically detect CSF typescript
- Also remove a section in run_tests.sh which is not necessary anymore,
   given that typescript is automatically detected.
2020-04-25 22:01:39 +02:00

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'
story_format='csf'
# parse command-line options
# '-f' sets fixtures directory
# '-s' sets story format to use
while getopts ":f:s:" opt; do
case $opt in
f)
fixtures_dir=$OPTARG
;;
s)
story_format=$OPTARG
;;
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
echo "Running storybook-cli in $dir"
case $story_format in
csf)
yarn sb init --skip-install --yes
;;
mdx)
if [[ $dir =~ (react_native*|angular-cli-v6|ember-cli|marko|meteor|mithril|riot) ]]
then
yarn sb init --skip-install --yes
else
yarn sb init --skip-install --yes --story-format mdx
fi
;;
esac
cd ..
done
cd ..
# install all the dependencies in a single run
cd ../../..
echo "Running bootstrap"
yarn install --non-interactive --silent --pure-lockfile
cd ${test_root}/run
for dir in *
do
# check that storybook starts without errors
cd $dir
echo "Running smoke test in $dir"
failed=0
yarn storybook --smoke-test --quiet || failed=1
if [ $failed -eq 1 ]
then
exit 1
fi
cd ..
done