summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-07-28 15:00:32 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-07-28 15:00:32 +0000
commit22f76b8a7e6e90b5786c3281635f5b88f4a80e43 (patch)
tree09b89d2a62c75cf9d96091f31c022312962061f6 /packages/integrations/mdx/test
parent6120a71e5425ad55a17ddac800d64a3f50273bce (diff)
downloadastro-22f76b8a7e6e90b5786c3281635f5b88f4a80e43.tar.gz
astro-22f76b8a7e6e90b5786c3281635f5b88f4a80e43.tar.zst
astro-22f76b8a7e6e90b5786c3281635f5b88f4a80e43.zip
[ci] format
Diffstat (limited to 'packages/integrations/mdx/test')
-rw-r--r--packages/integrations/mdx/test/mdx-get-static-paths.test.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/integrations/mdx/test/mdx-get-static-paths.test.js b/packages/integrations/mdx/test/mdx-get-static-paths.test.js
index f5d48922c..b4dc179d0 100644
--- a/packages/integrations/mdx/test/mdx-get-static-paths.test.js
+++ b/packages/integrations/mdx/test/mdx-get-static-paths.test.js
@@ -24,6 +24,9 @@ describe('getStaticPaths', () => {
expect($('p').text()).to.equal('First mdx file');
expect($('#one').text()).to.equal('hello', 'Frontmatter included');
expect($('#url').text()).to.equal('/src/content/1.mdx', 'url is included');
- expect($('#file').text()).to.contain('fixtures/mdx-get-static-paths/src/content/1.mdx', 'file is included');
+ expect($('#file').text()).to.contain(
+ 'fixtures/mdx-get-static-paths/src/content/1.mdx',
+ 'file is included'
+ );
});
});