From 1cfdc4e0ebb3640225d0cdfb4326ea6020d25389 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 27 Jul 2021 17:55:03 +0000 Subject: [PATCH] test: fix evm tests start --- --- a/tests/src/config.ts +++ b/tests/src/config.ts @@ -7,6 +7,7 @@ const config = { substrateUrl: process.env.substrateUrl || 'ws://127.0.0.1:9944', + frontierUrl: process.env.frontierUrl || 'http://127.0.0.1:9933', }; export default config; \ No newline at end of file --- 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); -- gitstuff