[ci] format
This commit is contained in:
parent
21f4826576
commit
272ad45958
1 changed files with 3 additions and 7 deletions
|
@ -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');
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue