REMOVE smoke-tests in cli (static build examples are now all in teamcity)

This commit is contained in:
Norbert de Langen 2018-07-20 16:35:07 +02:00
parent a87d16dfc7
commit 0ec2bc0a1e
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -83,22 +83,3 @@ if [ $update_only -eq 1 ]
then
exit 0
fi
# install all the dependencies in a single run
cd ../../..
yarn --pure-lockfile
cd ${test_root}/run
for dir in *
do
# check that storybook starts without errors
# smoke-test option may be unknown in earlier storybook versions,
# so skip `already_has_storybook` here
if [ $dir != "already_has_storybook" ]
then
cd $dir
echo "Running smoke test in $dir"
yarn storybook --smoke-test
cd ..
fi
done