From c46a6def0c23bfdae8c97df9023bcc5eabb1b706 Mon Sep 17 00:00:00 2001 From: Ibrahim Birbas Date: Wed, 3 Jun 2026 11:59:53 -0400 Subject: [PATCH] =?UTF-8?q?test(e2e):=20remove=20AVAX=E2=86=92USDC=20swap?= =?UTF-8?q?=20from=20smoke=20suite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AVAX_USDC was the only live swap pair tagged @smoke, gating the smoke suite on a real on-chain transaction. Drop @smoke so all live pairs are gated behind @swap-live (manual workflow dispatch) for now. --- e2e/tests/swap-live.spec.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/e2e/tests/swap-live.spec.ts b/e2e/tests/swap-live.spec.ts index 1e671442d..ea7f19b25 100644 --- a/e2e/tests/swap-live.spec.ts +++ b/e2e/tests/swap-live.spec.ts @@ -9,7 +9,7 @@ * 2. Extracts the tx hash from the explorer link's data-tx-hash attribute * 3. Verifies the transaction on-chain via RPC / Glacier / Etherscan / Solana RPC * - * Run: npx playwright test swap-live --grep @smoke + * Run: npx playwright test swap-live --grep @swap-live */ import { test, expect } from '../fixtures/extension.fixture'; @@ -57,10 +57,10 @@ const LIVE_PAIR_IDS = { test.describe('Swap Live', () => { for (const [key, pair] of ALL_PAIRS) { - // AVAX_USDC is the canonical live smoke gate; all other live pairs - // are gated behind @swap-live (only run on manual workflow dispatch). - const tags: string[] = - key === 'AVAX_USDC' ? ['@smoke', '@swap-live'] : ['@swap-live']; + // All live pairs are gated behind @swap-live (only run on manual + // workflow dispatch). AVAX_USDC was previously the @smoke gate but has + // been temporarily removed from the smoke suite. + const tags: string[] = ['@swap-live']; test( `${pair.from.symbol} → ${pair.to.symbol} (${pair.chain}) (live)`,