app.spec.ts > Sentinel demo E2E > flaky webhook signal blips (FLAKY)

app.spec.ts

failed
Duration: 12s
Project: chromium

Error

Error: expect(locator).toHaveText(expected) failed

Locator:  getByTestId('webhook-status')
Expected: "Degraded"
Received: "Healthy"
Timeout:  5000ms

Call log:
  - Expect "toHaveText" with timeout 5000ms
  - waiting for getByTestId('webhook-status')
    9 × locator resolved to <p class="badge badge--ok" data-testid="webhook-status">Healthy</p>
      - unexpected value "Healthy"


  77 |   test("flaky webhook signal blips (FLAKY)", async ({ page }) => {
  78 |     await page.goto("/");
> 79 |     await expect(page.getByTestId("webhook-status")).toHaveText("Degraded");
     |                                                      ^
  80 |   });
  81 | });
  82 |
    at /builds/sentinelqa/sentinel-demo/tests/app.spec.ts:79:54

AI Summary (demo)

Likely cause: timeout waiting for expected UI state
  • Evidence: timeout in Playwright log
  • Selector never reached expected state
  • First failure signal is timeout

VideoPublic demo

ScreenshotsPublic demo

LogsPublic demo

Run log
Run log
Run log

TracePublic demo