diff options
author | 2023-05-30 12:08:08 +0000 | |
---|---|---|
committer | 2023-05-30 12:08:08 +0000 | |
commit | e20a3b20b7f5f743c25533e81e633ad089cb2564 (patch) | |
tree | 710e7a0ca5e2f7bd3eaac3512384b1d823fd00cb | |
parent | cf621340b00fda441f4ef43196c0363d09eae70c (diff) | |
download | astro-e20a3b20b7f5f743c25533e81e633ad089cb2564.tar.gz astro-e20a3b20b7f5f743c25533e81e633ad089cb2564.tar.zst astro-e20a3b20b7f5f743c25533e81e633ad089cb2564.zip |
[ci] format
-rw-r--r-- | packages/integrations/mdx/test/astro-content-css.test.js | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/packages/integrations/mdx/test/astro-content-css.test.js b/packages/integrations/mdx/test/astro-content-css.test.js index 7168795cd..712aaf547 100644 --- a/packages/integrations/mdx/test/astro-content-css.test.js +++ b/packages/integrations/mdx/test/astro-content-css.test.js @@ -7,7 +7,10 @@ describe('build css from the component', async () => { let fixture; before(async () => { - fixture = await loadFixture({ root: new URL('./fixtures/astro-content-css/', import.meta.url),integrations: [mdx()], }); + fixture = await loadFixture({ + root: new URL('./fixtures/astro-content-css/', import.meta.url), + integrations: [mdx()], + }); await fixture.build(); }); @@ -22,10 +25,10 @@ describe('build css from the component', async () => { expect($('link[href$=".css"]').attr('href')).to.match(/^\/_astro\//); expect($('script[src$=".js"]').attr('src')).to.match(/^\/_astro\//); }); - }) + }); describe('Dev', () => { - let devServer + let devServer; before(async () => { devServer = await fixture.startDevServer(); }); @@ -42,5 +45,5 @@ describe('build css from the component', async () => { expect($.html()).to.include('CornflowerBlue'); expect($('script[src$=".js"]').attr('src')).to.include('astro'); }); - }) -}) + }); +}); |