summaryrefslogtreecommitdiff
path: root/packages/astro/performance/content-benchmark.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/performance/content-benchmark.mjs')
-rw-r--r--packages/astro/performance/content-benchmark.mjs8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/astro/performance/content-benchmark.mjs b/packages/astro/performance/content-benchmark.mjs
index bd362c807..a710bd762 100644
--- a/packages/astro/performance/content-benchmark.mjs
+++ b/packages/astro/performance/content-benchmark.mjs
@@ -74,8 +74,8 @@ async function benchmark({ fixtures, templates, numPosts }) {
const fixtures = formats.filter((format) => format !== 'md');
console.log(
`\n${bold('With Astro components')} ${dim(
- `${numPosts} posts (${formatsToString(fixtures)})`
- )}`
+ `${numPosts} posts (${formatsToString(fixtures)})`,
+ )}`,
);
process.env.ASTRO_PERFORMANCE_TEST_NAME = 'with-astro-components';
await benchmark({
@@ -92,8 +92,8 @@ async function benchmark({ fixtures, templates, numPosts }) {
const fixtures = formats.filter((format) => format !== 'md');
console.log(
`\n${bold('With React components')} ${dim(
- `${numPosts} posts (${formatsToString(fixtures)})`
- )}`
+ `${numPosts} posts (${formatsToString(fixtures)})`,
+ )}`,
);
process.env.ASTRO_PERFORMANCE_TEST_NAME = 'with-react-components';
await benchmark({