Skip to content

Commit

Permalink
Tweak e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronfigueiredo committed Sep 11, 2024
1 parent 3033b62 commit 04db149
Showing 1 changed file with 24 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
withFixtures,
} from '../../../helpers';
import { Mockttp } from '../../../mock-e2e';
import GanacheContractAddressRegistry from '../../../seeder/ganache-contract-address-registry';
import { SMART_CONTRACTS } from '../../../seeder/smart-contracts';
import { Driver } from '../../../webdriver/driver';
import { scrollAndConfirmAndAssertConfirm } from '../helpers';
Expand Down Expand Up @@ -36,9 +37,11 @@ describe('Confirmation Redesign ERC20 Increase Allowance', function () {
title: this.test?.fullTitle(),
},
async ({ driver, contractRegistry }: TestSuiteArguments) => {
await openDAppWithContract(driver, contractRegistry, smartContract);

await createAndAssertIncreaseAllowanceSubmission(driver, '3');
await createAndAssertIncreaseAllowanceSubmission(
driver,
'3',
contractRegistry,
);
},
);
});
Expand All @@ -62,9 +65,11 @@ describe('Confirmation Redesign ERC20 Increase Allowance', function () {
title: this.test?.fullTitle(),
},
async ({ driver, contractRegistry }: TestSuiteArguments) => {
await openDAppWithContract(driver, contractRegistry, smartContract);

await createAndAssertIncreaseAllowanceSubmission(driver, '3');
await createAndAssertIncreaseAllowanceSubmission(
driver,
'3',
contractRegistry,
);
},
);
});
Expand All @@ -88,9 +93,11 @@ describe('Confirmation Redesign ERC20 Increase Allowance', function () {
title: this.test?.fullTitle(),
},
async ({ driver, contractRegistry }: TestSuiteArguments) => {
await openDAppWithContract(driver, contractRegistry, smartContract);

await createAndAssertIncreaseAllowanceSubmission(driver, '3000');
await createAndAssertIncreaseAllowanceSubmission(
driver,
'3000',
contractRegistry,
);
},
);
});
Expand All @@ -114,9 +121,11 @@ describe('Confirmation Redesign ERC20 Increase Allowance', function () {
title: this.test?.fullTitle(),
},
async ({ driver, contractRegistry }: TestSuiteArguments) => {
await openDAppWithContract(driver, contractRegistry, smartContract);

await createAndAssertIncreaseAllowanceSubmission(driver, '3000');
await createAndAssertIncreaseAllowanceSubmission(
driver,
'3000',
contractRegistry,
);
},
);
});
Expand Down Expand Up @@ -157,7 +166,10 @@ describe('Confirmation Redesign ERC20 Increase Allowance', function () {
async function createAndAssertIncreaseAllowanceSubmission(
driver: Driver,
newSpendingCap: string,
contractRegistry?: GanacheContractAddressRegistry,
) {
await openDAppWithContract(driver, contractRegistry, SMART_CONTRACTS.HST);

await createERC20IncreaseAllowanceTransaction(driver);

await editSpendingCap(driver, newSpendingCap);
Expand Down

0 comments on commit 04db149

Please sign in to comment.