Skip to content

Commit a8fe7ac

Browse files
committed
refactor: fix format
1 parent 92639df commit a8fe7ac

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

e2e/plugin-js-benchmark-e2e/tests/suite-runners.e2e.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ describe('suite-runners', () => {
2222
['fast-operation', () => 1 + 1],
2323
[
2424
'slow-operation',
25-
() => Array.from({ length: 50_000 }, (_, i) =>
26-
Math.sqrt(Math.log(i + 1) * Math.sin(i))
27-
).reduce((total, value) => total + value, 0),
25+
() =>
26+
Array.from({ length: 50_000 }, (_, i) =>
27+
Math.sqrt(Math.log(i + 1) * Math.sin(i)),
28+
).reduce((total, value) => total + value, 0),
2829
],
2930
];
3031

0 commit comments

Comments
 (0)