diff options
Diffstat (limited to 'packages/integrations/netlify/test/functions/test-utils.js')
-rw-r--r-- | packages/integrations/netlify/test/functions/test-utils.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/netlify/test/functions/test-utils.js b/packages/integrations/netlify/test/functions/test-utils.js index 19cd7ef66..02b5d2ad9 100644 --- a/packages/integrations/netlify/test/functions/test-utils.js +++ b/packages/integrations/netlify/test/functions/test-utils.js @@ -4,14 +4,14 @@ import { fileURLToPath } from 'url'; export * from '../../../../astro/test/test-utils.js'; /** - * + * * @returns {import('../../../../astro/dist/types/@types/astro').AstroIntegration} */ export function testIntegration() { return { name: '@astrojs/netlify/test-integration', hooks: { - 'astro:config:setup':({ updateConfig }) => { + 'astro:config:setup': ({ updateConfig }) => { updateConfig({ vite: { resolve: { @@ -23,7 +23,7 @@ export function testIntegration() { }, }, }); - } - } + }, + }, }; } |