Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Apr 15, 2024
1 parent faddc28 commit 8abb2b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const itsCompilerSettings = {
evmVersion: process.env.EVM_VERSION || 'london',
optimizer: {
...optimizerSettings,
runs: 1000, // Reduce runs to keep bytecode size under limit
runs: 100, // Reduce runs to keep bytecode size under limit
},
},
};
Expand Down
6 changes: 3 additions & 3 deletions test/InterchainTokenService.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ describe('Interchain Token Service', () => {
]);

interchainTokenFactoryAddress = await getCreate3Address(create3Deployer.address, wallet, factoryDeploymentKey);
/*serviceTest = await deployContract(wallet, 'TestInterchainTokenService', [
serviceTest = await deployContract(wallet, 'TestInterchainTokenService', [
tokenManagerDeployer.address,
interchainTokenDeployer.address,
gateway.address,
Expand All @@ -231,7 +231,7 @@ describe('Interchain Token Service', () => {
chainName,
tokenManager.address,
tokenHandler.address,
]);*/
]);
});

describe('Interchain Token Service Deployment', () => {
Expand All @@ -249,7 +249,7 @@ describe('Interchain Token Service', () => {
);
});

it.skip('Should test setup revert cases', async () => {
it('Should test setup revert cases', async () => {
const operator = wallet.address;
const trustedChainNames = ['ChainA', 'ChainB'];
const trustedAddresses = [wallet.address, wallet.address];
Expand Down

0 comments on commit 8abb2b2

Please sign in to comment.