git.delta.rocks / unique-network / refs/commits / 1cfdc4e0ebb3

difftreelog

test fix evm tests start

Yaroslav Bolyukin2021-07-27parent: #4fa2a1b.patch.diff
in: master

2 files changed

modifiedtests/src/config.tsdiffbeforeafterboth
before · tests/src/config.ts
1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56import process from 'process';78const config = {9  substrateUrl: process.env.substrateUrl || 'ws://127.0.0.1:9944',10};1112export default config;
after · tests/src/config.ts
1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56import process from 'process';78const config = {9  substrateUrl: process.env.substrateUrl || 'ws://127.0.0.1:9944',10  frontierUrl: process.env.frontierUrl || 'http://127.0.0.1:9933',11};1213export default config;
modifiedtests/src/eth/allowlist.test.tsdiffbeforeafterboth
--- a/tests/src/eth/allowlist.test.ts
+++ b/tests/src/eth/allowlist.test.ts
@@ -32,7 +32,7 @@
     });
   });
 
-  itWeb3.only('Non-whitelisted user can\'t call contract with allowlist enabled', async ({ api }) => {
+  itWeb3('Non-whitelisted user can\'t call contract with allowlist enabled', async ({ api }) => {
     await usingWeb3Http(async web3Http => {
       const owner = await createEthAccountWithBalance(api, web3Http);
       const flipper = await deployFlipper(web3Http, owner);