diff options
Diffstat (limited to 'packages/integrations/markdoc/test/content-collections.test.js')
-rw-r--r-- | packages/integrations/markdoc/test/content-collections.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/markdoc/test/content-collections.test.js b/packages/integrations/markdoc/test/content-collections.test.js index ef4ebfcea..5417f297d 100644 --- a/packages/integrations/markdoc/test/content-collections.test.js +++ b/packages/integrations/markdoc/test/content-collections.test.js @@ -47,7 +47,7 @@ describe('Markdoc - Content Collections', () => { assert.deepEqual( posts.sort().map((post) => formatPost(post)), - [post1Entry, post2Entry, post3Entry] + [post1Entry, post2Entry, post3Entry], ); }); }); @@ -69,7 +69,7 @@ describe('Markdoc - Content Collections', () => { assert.notEqual(posts, null); assert.deepEqual( posts.sort().map((post) => formatPost(post)), - [post1Entry, post2Entry, post3Entry] + [post1Entry, post2Entry, post3Entry], ); }); }); |