diff --git a/examples/minimal/astro.config.mjs b/examples/minimal/astro.config.mjs index 48d20ba675..42a2cfb429 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 ae36717885..31fcc14d14 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}/); }); });