From e8d6bfe9f7690884a48819ae57ef7213111df44e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Dec 2025 20:48:41 +0000 Subject: [PATCH] [automated] Apply ESLint and Prettier fixes --- scripts/cicd/extract-playwright-counts.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/cicd/extract-playwright-counts.ts b/scripts/cicd/extract-playwright-counts.ts index e104c2151..c26dbdad1 100755 --- a/scripts/cicd/extract-playwright-counts.ts +++ b/scripts/cicd/extract-playwright-counts.ts @@ -116,10 +116,7 @@ function categorizeFailureType( /** * Recursively extract failing tests from suite structure */ -function extractFailingTests( - suite: Suite, - failingTests: FailingTest[] -): void { +function extractFailingTests(suite: Suite, failingTests: FailingTest[]): void { // Process tests in this suite if (suite.tests) { for (const test of suite.tests) { @@ -136,7 +133,8 @@ function extractFailingTests( let tracePath: string | undefined if (result.attachments) { const traceAttachment = result.attachments.find( - (att) => att.name === 'trace' || att.contentType === 'application/zip' + (att) => + att.name === 'trace' || att.contentType === 'application/zip' ) if (traceAttachment?.path) { tracePath = traceAttachment.path