From 9348ccb7de3ae5da4bfcd7bab1cf34d04a94876f Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 3 Nov 2020 08:14:55 -0800 Subject: [PATCH] fix(integration tests): slowing down integration tests for BVT --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 25b0241..dac3a34 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "main": "src/bch-js", "scripts": { "test": "nyc mocha --timeout 30000 test/unit/", - "test:integration": "mocha --timeout 30000 test/integration/", - "test:integration:testnet": "mocha --timeout 30000 test/integration/testnet/", + "test:integration": "IS_USING_FREE_TIER=true mocha --timeout 30000 test/integration/", + "test:integration:testnet": "IS_USING_FREE_TIER=true mocha --timeout 30000 test/integration/testnet/", "test:integration:local": "RESTURL=http://localhost:3000/v3/ mocha --timeout 30000 test/integration", "test:integration:testnet:local": "RESTURL=http://localhost:4000/v3/ mocha --timeout 30000 test/integration/testnet", "test:integration:free": "bash test/integration/test-free-tier.sh",