You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test_scripts/run_conformance_tests_cypress.sh
+15-4
Original file line number
Diff line number
Diff line change
@@ -87,25 +87,36 @@ if [ "${VERBOSE:-}" -eq 1 ] 2>/dev/null; then
87
87
printf"Building the application...\n"
88
88
fi
89
89
90
-
npm run build --loglevel silent | grep -v -E "Creating an optimized production build..."| sed '/The project was built assuming/,/https:\/\/cra\.link\/deployment/d'
90
+
build_output=$(mktemp)
91
+
92
+
npm run build --loglevel silent >"$build_output"2>&1
91
93
92
94
if [ $?-ne 0 ];then
93
95
printf"Error: Building application.\n"
96
+
cat "$build_output"
97
+
rm "$build_output"
94
98
exit 2
95
99
fi
96
100
101
+
rm "$build_output"
102
+
97
103
if [ "${VERBOSE:-}"-eq 1 ] 2>/dev/null;then
98
104
printf"Starting the application...\n"
99
105
fi
100
106
101
107
# Start the React app in the background and redirect output to a log file
0 commit comments