summaryrefslogtreecommitdiff
path: root/packages/astro/test/0-css.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/0-css.test.js')
-rw-r--r--packages/astro/test/0-css.test.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/test/0-css.test.js b/packages/astro/test/0-css.test.js
index e53df8408..b16e22f39 100644
--- a/packages/astro/test/0-css.test.js
+++ b/packages/astro/test/0-css.test.js
@@ -292,7 +292,10 @@ describe('CSS', function () {
it('resolves Astro styles', async () => {
const astroPageCss = $('link[rel=stylesheet][href^=/src/pages/index.astro?astro&type=style]');
- expect(astroPageCss.length).to.equal(4, 'The index.astro page should generate 4 stylesheets, 1 for each <style> tag on the page.')
+ expect(astroPageCss.length).to.equal(
+ 4,
+ 'The index.astro page should generate 4 stylesheets, 1 for each <style> tag on the page.'
+ );
});
it('resolves Styles from React', async () => {