diff options
Diffstat (limited to 'packages/integrations/markdoc/test/syntax-highlighting.test.js')
-rw-r--r-- | packages/integrations/markdoc/test/syntax-highlighting.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/markdoc/test/syntax-highlighting.test.js b/packages/integrations/markdoc/test/syntax-highlighting.test.js index 7b2016808..f47b891f4 100644 --- a/packages/integrations/markdoc/test/syntax-highlighting.test.js +++ b/packages/integrations/markdoc/test/syntax-highlighting.test.js @@ -40,7 +40,7 @@ describe('Markdoc - syntax highlighting', () => { ast, await getConfigExtendingShiki({ theme: 'dracula', - }) + }), ); assert.equal(content.children.length, 2); for (const codeBlock of content.children) { @@ -57,7 +57,7 @@ describe('Markdoc - syntax highlighting', () => { ast, await getConfigExtendingShiki({ wrap: true, - }) + }), ); assert.equal(content.children.length, 2); for (const codeBlock of content.children) { |