summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/css-head-mdx.test.js
diff options
context:
space:
mode:
authorGravatar Arsh <69170106+lilnasy@users.noreply.github.com> 2023-08-18 12:22:06 +0530
committerGravatar GitHub <noreply@github.com> 2023-08-18 07:52:06 +0100
commit8a5b0c1f3a4be6bb62db66ec70144109ff5b4c59 (patch)
tree3db98f0de0742ff5edf02b3b8f40e89375c3a561 /packages/integrations/mdx/test/css-head-mdx.test.js
parent2540feedb06785d5a20eecc3668849f147d778d4 (diff)
downloadastro-8a5b0c1f3a4be6bb62db66ec70144109ff5b4c59.tar.gz
astro-8a5b0c1f3a4be6bb62db66ec70144109ff5b4c59.tar.zst
astro-8a5b0c1f3a4be6bb62db66ec70144109ff5b4c59.zip
Switch `build.inlineStylesheets` default to auto (#8118)
* switch inlineStylesheets default * use previous default for astro/test * use previous default for content-collections-render.test.js * integrations: node, deno, mdx, markdown * typedocs: switch inlineStylesheets default * Update example to show non-default * add changeset * reword changeset --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'packages/integrations/mdx/test/css-head-mdx.test.js')
-rw-r--r--packages/integrations/mdx/test/css-head-mdx.test.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/integrations/mdx/test/css-head-mdx.test.js b/packages/integrations/mdx/test/css-head-mdx.test.js
index f4ece38d9..ed1c6d1d6 100644
--- a/packages/integrations/mdx/test/css-head-mdx.test.js
+++ b/packages/integrations/mdx/test/css-head-mdx.test.js
@@ -12,6 +12,8 @@ describe('Head injection w/ MDX', () => {
fixture = await loadFixture({
root: new URL('./fixtures/css-head-mdx/', import.meta.url),
integrations: [mdx()],
+ // test suite was authored when inlineStylesheets defaulted to never
+ build: { inlineStylesheets: 'never' },
});
});