We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6318d75 commit 7ce49d2Copy full SHA for 7ce49d2
script/testing-docker/entrypoint.sh
@@ -1,11 +1,13 @@
1
#!/bin/bash
2
3
+# Exit if any command fails
4
+set -e
5
+
6
cd /app
7
-export FORCE_COLOR=true
-yarn test:unit || exit 1
-yarn test:eslint || exit 1
8
-yarn test:script || exit 1
+yarn test:unit
9
+yarn test:eslint
10
+yarn test:script
11
12
echo '-------------------'
13
echo 'All tests passed 🎉'
0 commit comments