Skip to content

Commit

Permalink
test: disable xcm chopsticks tests fo/from statemine - currently brok…
Browse files Browse the repository at this point in the history
…en on chopsticks
  • Loading branch information
bvotteler committed Nov 16, 2023
1 parent a9233a7 commit b113e41
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions scripts/kintsugi-chopsticks-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { HeikoAdapter } from "../src/adapters/parallel";
import { KusamaAdapter } from "../src/adapters/polkadot";
import { StatemineAdapter } from "../src/adapters/statemint";
import { BaseCrossChainAdapter } from "../src/base-chain-adapter";
import { runTestCasesAndExit } from "./chopsticks-test";
import { RouterTestCase, runTestCasesAndExit } from "./chopsticks-test";

main().catch((err) => {
console.log("Error thrown by script:");
Expand All @@ -30,5 +30,10 @@ async function main(): Promise<void> {
kusama: { adapter: new KusamaAdapter(), endpoints: ['ws://127.0.0.1:8005'] },
};

await runTestCasesAndExit(adaptersEndpoints);
const filterCases: Partial<RouterTestCase>[] = [
{from: "statemine"},
{to: "statemine"},
];

await runTestCasesAndExit(adaptersEndpoints, filterCases);
}

0 comments on commit b113e41

Please sign in to comment.