From 9b3fb50b202fc1abf4623e9661f4943ab10f478d Mon Sep 17 00:00:00 2001 From: Brendon Votteler Date: Fri, 26 Apr 2024 15:00:35 +1000 Subject: [PATCH] test: disable USDC, USDT test from interlay to statemint --- scripts/polkadot-chopsticks-assethub-test.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/scripts/polkadot-chopsticks-assethub-test.ts b/scripts/polkadot-chopsticks-assethub-test.ts index 35fc126..a643428 100644 --- a/scripts/polkadot-chopsticks-assethub-test.ts +++ b/scripts/polkadot-chopsticks-assethub-test.ts @@ -34,7 +34,19 @@ async function main(): Promise { from: "polkadot", to: "interlay", }, + // USDC and USDC test cases broken since latest changes + // on statemint where those are converted to DOT before sending fees. + { + from: "interlay", + to: "statemint", + token: "USDC" + }, + { + from: "interlay", + to: "statemint", + token: "USDT" + }, ]; await runTestCasesAndExit(adaptersEndpoints, true, skipCases); -} \ No newline at end of file +}