[ci] format

This commit is contained in:
bluwy 2023-10-04 10:26:21 +00:00 committed by Martin Trapp
parent 6bba4efb3f
commit 05833ab44e

View file

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