diff options
author | 2022-06-03 13:39:43 +0000 | |
---|---|---|
committer | 2022-06-03 13:39:43 +0000 | |
commit | ae1459540705ed8c722a345b0f574eb68a70d6bc (patch) | |
tree | ac6099edc961edaa1d6dcff588f176a7d45d5e6c /packages/markdown/remark/test | |
parent | 6c955ca643a7a071609ce8a5258cc7faf5a636b2 (diff) | |
download | astro-ae1459540705ed8c722a345b0f574eb68a70d6bc.tar.gz astro-ae1459540705ed8c722a345b0f574eb68a70d6bc.tar.zst astro-ae1459540705ed8c722a345b0f574eb68a70d6bc.zip |
[ci] format
Diffstat (limited to 'packages/markdown/remark/test')
-rw-r--r-- | packages/markdown/remark/test/strictness.test.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/markdown/remark/test/strictness.test.js b/packages/markdown/remark/test/strictness.test.js index c18cc41dd..314af09af 100644 --- a/packages/markdown/remark/test/strictness.test.js +++ b/packages/markdown/remark/test/strictness.test.js @@ -8,9 +8,11 @@ describe('strictness', () => { {} ); - chai.expect(code).to.equal( - `<p>Use self-closing void elements<br />like word<wbr />break and images: ` + - `<img src="hi.jpg" /></p>` - ); + chai + .expect(code) + .to.equal( + `<p>Use self-closing void elements<br />like word<wbr />break and images: ` + + `<img src="hi.jpg" /></p>` + ); }); }); |