This commit is contained in:
silverwind
2026-02-02 20:22:00 +01:00
parent 6eaaed77a4
commit 44b5b93837
+2 -2
View File
@@ -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",