Skip to content

Commit 606b5c6

Browse files
mittalsonalatul-upadhyay-7
authored andcommitted
style: wrap long filter line for prettier
1 parent 5511b94 commit 606b5c6

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

scripts/benchmark-svg.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@ describe('scripts/benchmark-svg', () => {
8484

8585
const lines = logSpy.mock.calls
8686
.map((args) => String(args[0]))
87-
.filter((line) => line.startsWith('Average:') || line.startsWith('Min:') || line.startsWith('Max:'));
87+
.filter(
88+
(line) =>
89+
line.startsWith('Average:') ||
90+
line.startsWith('Min:') ||
91+
line.startsWith('Max:')
92+
);
8893

8994
expect(lines.length).toBe(9);
9095
for (const line of lines) {

0 commit comments

Comments
 (0)