diff options
author | 2022-11-04 13:11:59 +0000 | |
---|---|---|
committer | 2022-11-04 13:11:59 +0000 | |
commit | 4cf87eb29fc94ccb6ffb4f6ca7b7e75f9add342b (patch) | |
tree | 3627187eb3a8fb54f266157704d7b8331783e933 | |
parent | 247eb7411f429317e5cd7d401a6660ee73641313 (diff) | |
download | astro-4cf87eb29fc94ccb6ffb4f6ca7b7e75f9add342b.tar.gz astro-4cf87eb29fc94ccb6ffb4f6ca7b7e75f9add342b.tar.zst astro-4cf87eb29fc94ccb6ffb4f6ca7b7e75f9add342b.zip |
[ci] format
-rw-r--r-- | examples/minimal/astro.config.mjs | 2 | ||||
-rw-r--r-- | packages/astro/test/root-srcdir-css.test.js | 2 |
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}/); }); }); |