From 764fd5fafc5fbc410579e3e1b6907275b1747940 Mon Sep 17 00:00:00 2001 From: Brendon Votteler Date: Fri, 26 Apr 2024 14:36:07 +1000 Subject: [PATCH 1/2] test: update chopsticks version to fix chopsticks test errors --- .github/workflows/xcm-assethub-tests.yml | 4 ++-- .github/workflows/xcm-tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/xcm-assethub-tests.yml b/.github/workflows/xcm-assethub-tests.yml index bccb34d..bf7c82d 100644 --- a/.github/workflows/xcm-assethub-tests.yml +++ b/.github/workflows/xcm-assethub-tests.yml @@ -21,7 +21,7 @@ jobs: - name: Launch chopsticks timeout-minutes: 3 run: | - npx --yes @acala-network/chopsticks@0.9.10 \ + npx --yes @acala-network/chopsticks@0.10.1 \ xcm \ -r scripts/configs/kusama.yml \ -p scripts/configs/kintsugi.yml \ @@ -55,7 +55,7 @@ jobs: - name: Launch chopsticks timeout-minutes: 3 run: | - npx --yes @acala-network/chopsticks@0.9.10 \ + npx --yes @acala-network/chopsticks@0.10.1 \ xcm \ -r scripts/configs/polkadot.yml \ -p scripts/configs/interlay.yml \ diff --git a/.github/workflows/xcm-tests.yml b/.github/workflows/xcm-tests.yml index 9164da4..9aefa8c 100644 --- a/.github/workflows/xcm-tests.yml +++ b/.github/workflows/xcm-tests.yml @@ -21,7 +21,7 @@ jobs: - name: Launch chopsticks timeout-minutes: 3 run: | - npx --yes @acala-network/chopsticks@0.9.10 \ + npx --yes @acala-network/chopsticks@0.10.1 \ xcm \ -r scripts/configs/kusama.yml \ -p scripts/configs/kintsugi.yml \ @@ -64,7 +64,7 @@ jobs: - name: Launch chopsticks timeout-minutes: 3 run: | - npx --yes @acala-network/chopsticks@0.9.10 \ + npx --yes @acala-network/chopsticks@0.10.1 \ xcm \ -r scripts/configs/polkadot.yml \ -p scripts/configs/interlay.yml \ From 9b3fb50b202fc1abf4623e9661f4943ab10f478d Mon Sep 17 00:00:00 2001 From: Brendon Votteler Date: Fri, 26 Apr 2024 15:00:35 +1000 Subject: [PATCH 2/2] 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 +}