diff options
author | 2023-08-25 13:02:36 +0000 | |
---|---|---|
committer | 2023-08-25 13:02:36 +0000 | |
commit | 6606245b35a3dfb69fa16504fceb246135503a10 (patch) | |
tree | 1dd703ceba563d0b92147088746a03592c075895 | |
parent | 0ae3b7a7ba1bd999608f10666dd454a91b811f9e (diff) | |
download | astro-6606245b35a3dfb69fa16504fceb246135503a10.tar.gz astro-6606245b35a3dfb69fa16504fceb246135503a10.tar.zst astro-6606245b35a3dfb69fa16504fceb246135503a10.zip |
[ci] format
-rw-r--r-- | benchmark/make-project/server-stress-default.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/benchmark/make-project/server-stress-default.js b/benchmark/make-project/server-stress-default.js index cbeeeda3b..79e8b260a 100644 --- a/benchmark/make-project/server-stress-default.js +++ b/benchmark/make-project/server-stress-default.js @@ -27,10 +27,14 @@ const content = "${loremIpsum}" <body> <h1>Astro</h1> <div> - ${Array.from({ length: 100 }).map(() => '<p>{content}</p>').join('\n')} + ${Array.from({ length: 100 }) + .map(() => '<p>{content}</p>') + .join('\n')} </div> <div> - ${Array.from({ length: 50 }).map((_, i) => '<Paragraph num={' + i + '} str={content} />').join('\n')} + ${Array.from({ length: 50 }) + .map((_, i) => '<Paragraph num={' + i + '} str={content} />') + .join('\n')} </div> </body> </html>`, |