summaryrefslogtreecommitdiff
path: root/packages/astro/test/benchmark/dev.bench.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/benchmark/dev.bench.js')
-rw-r--r--packages/astro/test/benchmark/dev.bench.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/astro/test/benchmark/dev.bench.js b/packages/astro/test/benchmark/dev.bench.js
index e2c4d3dcd..5f222a26d 100644
--- a/packages/astro/test/benchmark/dev.bench.js
+++ b/packages/astro/test/benchmark/dev.bench.js
@@ -33,7 +33,7 @@ const benchmarks = [
},
run({ root }) {
return runToStarted(root);
- }
+ },
}),
new Benchmark({
name: 'Snowpack Example Dev Server Cached',
@@ -45,17 +45,17 @@ const benchmarks = [
},
run({ root }) {
return runToStarted(root);
- }
- })
+ },
+ }),
];
async function run() {
- for(const b of benchmarks) {
+ for (const b of benchmarks) {
await b.test();
}
}
-run().catch(err => {
+run().catch((err) => {
console.error(err);
process.exit(1);
-}); \ No newline at end of file
+});