From 515a0c084fc6c46f8e0746e6df3129d42a0d651a Mon Sep 17 00:00:00 2001 From: Aaron Cox Date: Mon, 24 Jul 2023 15:59:19 -0700 Subject: [PATCH] Remove timeout from ci-test build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a230eb0..65e1483 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ coverage: build/coverage ci-test: node_modules @TS_NODE_PROJECT='./test/tsconfig.json' MOCK_DIR='./test/data/requests' \ ${BIN}/nyc ${NYC_OPTS} --reporter=text \ - ${BIN}/mocha ${MOCHA_OPTS} -R list ${TEST_FILES} + ${BIN}/mocha ${MOCHA_OPTS} -R list ${TEST_FILES} --no-timeout .PHONY: check check: node_modules