From 4cf87eb29fc94ccb6ffb4f6ca7b7e75f9add342b Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 4 Nov 2022 13:11:59 +0000 Subject: [PATCH] [ci] format --- examples/minimal/astro.config.mjs | 2 +- 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 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}/); }); });