From 44b5b93837db3ea5de763c073525596c43643be0 Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 2 Feb 2026 20:22:00 +0100 Subject: [PATCH] fix lint --- web_src/js/render/log.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_src/js/render/log.test.ts b/web_src/js/render/log.test.ts index 6d5e8a51ae..7e64a30b26 100644 --- a/web_src/js/render/log.test.ts +++ b/web_src/js/render/log.test.ts @@ -17,7 +17,7 @@ test('filters workflow command lines from log output', () => { {index: 9, timestamp: 1008, message: 'Build complete'}, ]; - expect(filterLogLines(inputLogLines).map(line => line.message)).toMatchInlineSnapshot(` + expect(filterLogLines(inputLogLines).map((line) => line.message)).toMatchInlineSnapshot(` [ "Starting build process", "Running tests...", @@ -39,7 +39,7 @@ test('preserves non-workflow command lines including group commands', () => { {index: 6, timestamp: 1005, message: 'Done'}, ]; - expect(filterLogLines(inputLogLines).map(line => line.message)).toMatchInlineSnapshot(` + expect(filterLogLines(inputLogLines).map((line) => line.message)).toMatchInlineSnapshot(` [ "Normal log line", "::group::Installation",