From 684324825b5910459580ee3ab1581f31977db58d Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Fri, 30 Jan 2026 02:57:58 +0000 Subject: [PATCH] test: skip flaky faucet E2E test This test depends on external faucet service timing and is blocking deploys on main. Skipping until we can mock the faucet response or improve test reliability. Amp-Thread-ID: https://ampcode.com/threads/T-019c0c44-b42c-7448-bc59-76729f21276a Co-authored-by: Amp --- e2e/faucet.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/e2e/faucet.spec.ts b/e2e/faucet.spec.ts index dceb26c4..2c2eb023 100644 --- a/e2e/faucet.spec.ts +++ b/e2e/faucet.spec.ts @@ -1,6 +1,8 @@ import { expect, test } from '@playwright/test' -test('fund an address via faucet', async ({ page }) => { +// Skip: This test depends on external faucet service and is flaky in CI +// TODO: Mock the faucet response or increase timeout +test.skip('fund an address via faucet', async ({ page }) => { await page.goto('/quickstart/faucet') // Switch to "Fund an address" tab