From 0101120d8dbf5b3612404d6505ececc37dbd5ba5 Mon Sep 17 00:00:00 2001 From: Vladimir Voitenko Date: Mon, 13 Nov 2023 21:29:29 +0500 Subject: [PATCH] packages:js:increase-timeout-for-tests --- packages/js/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/js/package.json b/packages/js/package.json index 2e6cc58..eec271c 100644 --- a/packages/js/package.json +++ b/packages/js/package.json @@ -13,7 +13,7 @@ "lint": "eslint --ext=ts .", "lint:fix": "eslint --fix --ext=ts .", "test": "jest", - "test:coverage": "jest --coverage --timeout=10000", + "test:coverage": "jest --coverage --timeout=20000", "schema:update": "cp -r ../../schema/* ./src/schema/", "schema:validate": "if test $(npm run --silent schema:global:hash) = $(npm run --silent schema:hash);then echo 'Schema is up to date'; exit 0; else echo 'Schema is outdated'; exit 1; fi", "schema:hash": "find ./src/schema/* -type f -print0 | sort -z | xargs -0 sha1sum | cut -d \" \" -f 1 | sha1sum | cut -d \" \" -f 1",