From b443e89af583583a7f4fe442388bbd4a4149d2f8 Mon Sep 17 00:00:00 2001 From: vdelacruzb Date: Tue, 8 Jul 2025 16:20:37 +0200 Subject: [PATCH] update makefile --- clouds/snowflake/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clouds/snowflake/modules/Makefile b/clouds/snowflake/modules/Makefile index 4a16461fc..e6d0a2dda 100644 --- a/clouds/snowflake/modules/Makefile +++ b/clouds/snowflake/modules/Makefile @@ -101,7 +101,7 @@ test: check $(NODE_MODULES_DEV) TESTS=`$(COMMON_DIR)/list_functions.js $$m --diff="$(diff)" --modules=$(modules) --functions=$(functions)`; \ if [ ! -z "$$TESTS" ]; then \ PATH="$(NODE_MODULES_DEV)/.bin/:$(PATH)" \ - jest --testTimeout=40000 $(BAIL) --verbose --slowTestThreshold=20 --maxConcurrency=10 $$TESTS \ + jest --testTimeout=50000 $(BAIL) --verbose --slowTestThreshold=20 --maxConcurrency=10 $$TESTS \ --setupFilesAfterEnv "$(COMMON_DIR)/test-extend.js" || exit 1; \ fi; \ done;