diff options
Diffstat (limited to 'packages/markdown/remark/test/strictness.test.js')
-rw-r--r-- | packages/markdown/remark/test/strictness.test.js | 5 |
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>`); }); |