[ci] format

This commit is contained in:
matthewp 2022-11-04 13:11:59 +00:00 committed by fredkbot
parent 247eb7411f
commit 4cf87eb29f
2 changed files with 2 additions and 2 deletions

View file

@ -3,5 +3,5 @@ import { defineConfig } from 'astro/config';
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
srcDir: '.', srcDir: '.',
root: '.' root: '.',
}); });

View file

@ -18,7 +18,7 @@ describe('srcDir', () => {
const relPath = $('link').attr('href'); const relPath = $('link').attr('href');
const css = await fixture.readFile(relPath); const css = await fixture.readFile(relPath);
console.log(css) console.log(css);
expect(css).to.match(/body{color:green}/); expect(css).to.match(/body{color:green}/);
}); });
}); });