diff options
Diffstat (limited to 'packages/astro/test/units/dev/collections-mixed-content-errors.test.js')
-rw-r--r-- | packages/astro/test/units/dev/collections-mixed-content-errors.test.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/astro/test/units/dev/collections-mixed-content-errors.test.js b/packages/astro/test/units/dev/collections-mixed-content-errors.test.js index d63e42d53..73ce15377 100644 --- a/packages/astro/test/units/dev/collections-mixed-content-errors.test.js +++ b/packages/astro/test/units/dev/collections-mixed-content-errors.test.js @@ -44,7 +44,7 @@ name: Ben export const collections = { authors };`, }, - root + root, ); assert.equal(await sync({ fs }), 1); @@ -72,7 +72,7 @@ title: Post export const collections = { blog };`, }, - root + root, ); assert.equal(await sync({ fs }), 1); @@ -95,7 +95,7 @@ title: Post export const collections = { banners };`, }, - root + root, ); assert.equal(await sync({ fs }), 1); @@ -118,7 +118,7 @@ title: Post export const collections = { i18n };`, }, - root + root, ); try { |