Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 6379aa8

Browse files
authored
fix: remove force exit from blackbox tests (#7397)
1 parent 5437fbc commit 6379aa8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/web3/test/cjs_black_box/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"type": "commonjs",
88
"scripts": {
99
"test:geth:http": "WEB3_SYSTEM_TEST_BACKEND=geth WEB3_SYSTEM_TEST_PROVIDER=http://localhost:8545 jest",
10-
"test:geth:ws": "WEB3_SYSTEM_TEST_BACKEND=geth WEB3_SYSTEM_TEST_PROVIDER=ws://localhost:8545 jest --forceExit",
10+
"test:geth:ws": "WEB3_SYSTEM_TEST_BACKEND=geth WEB3_SYSTEM_TEST_PROVIDER=ws://localhost:8545 jest",
1111
"test:infura:http": "WEB3_SYSTEM_TEST_BACKEND=infura jest",
12-
"test:infura:ws": "WEB3_SYSTEM_TEST_BACKEND=infura jest --forceExit"
12+
"test:infura:ws": "WEB3_SYSTEM_TEST_BACKEND=infura jest"
1313
},
1414
"dependencies": {
1515
"web3": "5.0.0"

packages/web3/test/esm_black_box/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"scripts": {
99
"test:hardhat:http": "WEB3_SYSTEM_TEST_BACKEND=hardhat WEB3_SYSTEM_TEST_PROVIDER=http://localhost:8545 jest",
1010
"test:geth:http": "WEB3_SYSTEM_TEST_BACKEND=geth WEB3_SYSTEM_TEST_PROVIDER=http://localhost:8545 jest",
11-
"test:geth:ws": "WEB3_SYSTEM_TEST_BACKEND=geth WEB3_SYSTEM_TEST_PROVIDER=ws://localhost:8545 jest --forceExit",
11+
"test:geth:ws": "WEB3_SYSTEM_TEST_BACKEND=geth WEB3_SYSTEM_TEST_PROVIDER=ws://localhost:8545 jest",
1212
"test:infura:http": "WEB3_SYSTEM_TEST_BACKEND=infura jest",
13-
"test:infura:ws": "WEB3_SYSTEM_TEST_BACKEND=infura jest --forceExit"
13+
"test:infura:ws": "WEB3_SYSTEM_TEST_BACKEND=infura jest"
1414
},
1515
"dependencies": {
1616
"web3": "5.0.0"

0 commit comments

Comments
 (0)