summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/minimal/astro.config.mjs2
-rw-r--r--packages/astro/test/root-srcdir-css.test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/minimal/astro.config.mjs b/examples/minimal/astro.config.mjs
index 48d20ba67..42a2cfb42 100644
--- a/examples/minimal/astro.config.mjs
+++ b/examples/minimal/astro.config.mjs
@@ -3,5 +3,5 @@ import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
srcDir: '.',
- root: '.'
+ root: '.',
});
diff --git a/packages/astro/test/root-srcdir-css.test.js b/packages/astro/test/root-srcdir-css.test.js
index ae3671788..31fcc14d1 100644
--- a/packages/astro/test/root-srcdir-css.test.js
+++ b/packages/astro/test/root-srcdir-css.test.js
@@ -18,7 +18,7 @@ describe('srcDir', () => {
const relPath = $('link').attr('href');
const css = await fixture.readFile(relPath);
- console.log(css)
+ console.log(css);
expect(css).to.match(/body{color:green}/);
});
});