summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/test-utils.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/test/test-utils.js b/packages/astro/test/test-utils.js
index 29527df72..2c11c7d23 100644
--- a/packages/astro/test/test-utils.js
+++ b/packages/astro/test/test-utils.js
@@ -74,10 +74,10 @@ export async function loadFixture(inlineConfig) {
// TODO: Remove this to test in Node >= 17 where the dns resolver is verbatim
if (!inlineConfig?.server) {
inlineConfig.server = {
- host: '127.0.0.1'
- }
+ host: '127.0.0.1',
+ };
}
-
+
// load config
let cwd = inlineConfig.root;
delete inlineConfig.root;