summaryrefslogtreecommitdiff
path: root/packages/markdown/remark/test/strictness.test.js
diff options
context:
space:
mode:
authorGravatar tony-sull <tony-sull@users.noreply.github.com> 2022-07-22 22:47:21 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-07-22 22:47:21 +0000
commit41f4a8f9cbdd58e3fff7ce051bb74f058fcd3587 (patch)
tree24482c5a6d0e5f6f85b20be2ad257331565db140 /packages/markdown/remark/test/strictness.test.js
parent00fab4ce135eb799cac69140403d7724686733d6 (diff)
downloadastro-41f4a8f9cbdd58e3fff7ce051bb74f058fcd3587.tar.gz
astro-41f4a8f9cbdd58e3fff7ce051bb74f058fcd3587.tar.zst
astro-41f4a8f9cbdd58e3fff7ce051bb74f058fcd3587.zip
[ci] format
Diffstat (limited to 'packages/markdown/remark/test/strictness.test.js')
-rw-r--r--packages/markdown/remark/test/strictness.test.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/markdown/remark/test/strictness.test.js b/packages/markdown/remark/test/strictness.test.js
index c70872701..324415c6a 100644
--- a/packages/markdown/remark/test/strictness.test.js
+++ b/packages/markdown/remark/test/strictness.test.js
@@ -67,10 +67,7 @@ describe('strictness in Astro-flavored markdown', () => {
});
it('should allow attribute names starting with "@" after attribute names', async () => {
- const { code } = await renderAstroMd(
- `<button disabled @click="handleClick">Test</button>`,
- {}
- );
+ const { code } = await renderAstroMd(`<button disabled @click="handleClick">Test</button>`, {});
chai.expect(code.trim()).to.equal(`<button disabled @click="handleClick">Test</button>`);
});