Skip to content

Commit

Permalink
increase setup timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
marshacb committed Dec 12, 2024
1 parent 4ad3b04 commit e91a322
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/moonbeam.hydration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ describe('Moonbeam <> Hydration', () => {

hydration = hydration1;
moonbeam = moonbeam1;
}, 100000);
}, 200000);

afterEach(async () => {
await moonbeam.teardown();
await hydration.teardown();
}, 100000);
}, 200000);

test('Transfer GLMR from Moonbeam to Hydration', async () => {
await moonbeam.dev.setStorage({
Expand Down
4 changes: 2 additions & 2 deletions e2e-tests/polkadotAssetHub.bridgeHub.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ describe('Polkadot AssetHub <> Ethereum', () => {

polkadotBridgeHub = polkadotBridgeHub1;
polkadotAssetHub = polkadotAssetHub1;
}, 100000);
}, 200000);

afterEach(async () => {
await polkadotBridgeHub.teardown();
await polkadotAssetHub.teardown();
}, 100000);
}, 200000);

test('Snowbridge WETH From AssetHub to Ethereum', async () => {
await polkadotAssetHub.dev.setStorage({
Expand Down
4 changes: 2 additions & 2 deletions e2e-tests/polkadotAssetHub.hydration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ describe('Polkadot AssetHub <> Hydration', () => {

hydration = hydration1;
polkadotAssetHub = polkadotAssetHub1;
}, 100000);
}, 200000);

afterEach(async () => {
await polkadotAssetHub.teardown();
await hydration.teardown();
}, 100000);
}, 200000);

test('AssetHub Local DOT Transfer', async () => {
await polkadotAssetHub.api.isReady;
Expand Down

0 comments on commit e91a322

Please sign in to comment.