Skip to content

Commit

Permalink
cleanup e2e context
Browse files Browse the repository at this point in the history
  • Loading branch information
nohaapav committed Dec 12, 2024
1 parent 5a88e81 commit 3ece583
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions integration-tests/xcm-test/src/e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@ const { runXcm } = xcm;
*
* Constraints:
* 1) Bridge transfers are not executed.
* 2) Acala EVM is skipped (testing chain)
* 2) Nodle is skipped (unstable rpc's)
* 3) Phala is skipped (unstable rpc's)
* 2) Nodle is skipped (unstable rpc's).
*
* @returns chains execution ctx
*/
const getPolkadotChains = () => {
const bridge: string[] = ['ethereum'];
const skipFor: string[] = bridge.concat(['acala-evm', 'nodle']);
const skipFor: string[] = bridge.concat(['nodle']);
const chains: Parachain[] = Array.from(configService.chains.values())
.filter((c) => c instanceof Parachain)
.filter((c) => c.ecosystem === ChainEcosystem.Polkadot)
Expand Down

0 comments on commit 3ece583

Please sign in to comment.