Skip to content

Commit c7bc89c

Browse files
mxstbrgaearon
authored andcommitted
Remove || exit 1
1 parent ce9fdca commit c7bc89c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tasks/e2e.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ npm start -- --smoke-test
4040
npm run build
4141

4242
# Check for expected output
43-
test -e build/*.html || exit 1
44-
test -e build/*.js || exit 1
43+
test -e build/*.html
44+
test -e build/*.js
4545

4646
# Pack CLI
4747
cd global-cli
@@ -63,8 +63,8 @@ cd test-app
6363
npm run build
6464

6565
# Check for expected output
66-
test -e build/*.html || exit 1
67-
test -e build/*.js || exit 1
66+
test -e build/*.html
67+
test -e build/*.js
6868

6969
# Test the server
7070
npm start -- --smoke-test
@@ -74,8 +74,8 @@ echo yes | npm run eject
7474
npm run build
7575

7676
# Check for expected output
77-
test -e build/*.html || exit 1
78-
test -e build/*.js || exit 1
77+
test -e build/*.html
78+
test -e build/*.js
7979

8080
# Test the server
8181
npm start -- --smoke-test

0 commit comments

Comments
 (0)