From 0ec2bc0a1ebbc0d18392c5e5f506ec3eafff66c3 Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Fri, 20 Jul 2018 16:35:07 +0200 Subject: [PATCH] REMOVE smoke-tests in cli (static build examples are now all in teamcity) --- lib/cli/test/run_tests.sh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lib/cli/test/run_tests.sh b/lib/cli/test/run_tests.sh index 10975cbb569..01b4f091428 100755 --- a/lib/cli/test/run_tests.sh +++ b/lib/cli/test/run_tests.sh @@ -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