git.delta.rocks / unique-network / refs/commits / dd2a57fee382

difftreelog

fixup tests

Yaroslav Bolyukin2022-01-26parent: #a11cc83.patch.diff
in: master

3 files changed

modifiedtests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth
--- a/tests/src/eth/contractSponsoring.test.ts
+++ b/tests/src/eth/contractSponsoring.test.ts
@@ -35,7 +35,7 @@
     expect(await helpers.methods.sponsoringEnabled(flipper.options.address).call()).to.be.false;
   });
 
-  itWeb3('In generous mode, non-allowlisted user transaction will be sponsored', async ({ api, web3 }) => {
+  itWeb3('In generous mode, non-allowlisted user transaction will be sponsored', async ({api, web3}) => {
     const alice = privateKey('//Alice');
 
     const owner = await createEthAccountWithBalance(api, web3);
@@ -67,7 +67,7 @@
     const alice = privateKey('//Alice');
 
     const owner = await createEthAccountWithBalance(api, web3);
-    const caller = await createEthAccount(api);
+    const caller = createEthAccount(web3);
 
     const flipper = await deployFlipper(web3, owner);
 
@@ -97,7 +97,7 @@
     const alice = privateKey('//Alice');
 
     const owner = await createEthAccountWithBalance(api, web3);
-    const caller = await createEthAccount(api);
+    const caller = createEthAccount(web3);
 
     const flipper = await deployFlipper(web3, owner);
 
modifiedtests/src/eth/util/contractHelpersAbi.jsondiffbeforeafterboth
139 "stateMutability": "nonpayable",139 "stateMutability": "nonpayable",
140 "type": "function"140 "type": "function"
141 },141 },
142 {
143 "inputs": [
144 {
145 "internalType": "address",
146 "name": "target",
147 "type": "address"
148 },
149 {
150 "internalType": "uint8",
151 "name": "mode",
152 "type": "uint8"
153 }
154 ],
155 "name": "setSponsoringMode",
156 "outputs": [],
157 "stateMutability": "nonpayable",
158 "type": "function"
159 },
160 {
161 "inputs": [
162 {
163 "internalType": "address",
164 "name": "target",
165 "type": "address"
166 }
167 ],
168 "name": "sponsoringMode",
169 "outputs": [
170 {
171 "internalType": "uint8",
172 "name": "",
173 "type": "uint8"
174 }
175 ],
176 "stateMutability": "nonpayable",
177 "type": "function"
178 },
142 {179 {
143 "inputs": [180 "inputs": [
144 {181 {
modifiedtests/src/eth/util/helpers.tsdiffbeforeafterboth
--- a/tests/src/eth/util/helpers.ts
+++ b/tests/src/eth/util/helpers.ts
@@ -22,9 +22,9 @@
 export const GAS_ARGS = {gas: 2500000};
 
 export enum SponsoringMode {
-  Disabled,
-  Allowlisted,
-  Generous,
+  Disabled = 0,
+  Allowlisted = 1,
+  Generous = 2,
 }
 
 let web3Connected = false;