[ci] format

This commit is contained in:
bluwy 2023-10-04 10:26:21 +00:00 committed by astrobot-houston
parent 21f4826576
commit 272ad45958

View file

@ -5,12 +5,8 @@ describe('shiki syntax highlighting', async () => {
const processor = await createMarkdownProcessor(); const processor = await createMarkdownProcessor();
it('does not add is:raw to the output', async () => { it('does not add is:raw to the output', async () => {
const { const { code } = await processor.render('```\ntest\n```');
code,
} = await processor.render('```\ntest\n```');
chai chai.expect(code).not.to.contain('is:raw');
.expect(code)
.not.to.contain("is:raw");
}); });
}); });