Skip to content

Commit

Permalink
fixup! test: e2e test of kitchen-sink.contract.js
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpatrickdev committed Jul 10, 2024
1 parent 0c8bd4a commit 7376204
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions multichain-testing/test/kitchen-sink.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,16 +152,10 @@ const chainConfigs = {
};

for (const [chainName, config] of Object.entries(chainConfigs)) {
for (const wallet of accounts) {
const scenario = {
...config,
contractName: 'kitchenSink',
wallet,
};
test.serial(
`Create account on ${chainName} for ${wallet}`,
makeAccountScenario,
scenario,
);
}
const scenario = {
...config,
contractName: 'kitchenSink',
wallet: accounts[0],
};
test.serial(`Create account on ${chainName}`, makeAccountScenario, scenario);
}

0 comments on commit 7376204

Please sign in to comment.