Skip to content

Commit 009fb94

Browse files
committed
Try redirecting stderr to /dev/null
This in order to address broken pipe errors when running on GitHub CI.
1 parent 362dc05 commit 009fb94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/make/lib/test/javascript.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ test-javascript-files: test-javascript-files-local
5858
# This target runs JavaScript unit tests locally.
5959

6060
test-javascript-local: $(NODE_MODULES)
61-
$(QUIET) $(FIND_TESTS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r test; do \
61+
$(QUIET) $(FIND_TESTS_CMD) 2>/dev/null | grep '^[\/]\|^[a-zA-Z]:[/\]' 2>/dev/null | while read -r test; do \
6262
echo ''; \
6363
echo "Running test: $$test"; \
6464
NODE_ENV="$(NODE_ENV_TEST)" \

0 commit comments

Comments
 (0)