From 3d1329414e507345b19e1dee81fe1bbff4eb3ae0 Mon Sep 17 00:00:00 2001 From: alexanderniebuhr Date: Mon, 16 Oct 2023 14:10:41 +0000 Subject: [ci] format --- .../integrations/netlify/test/static/test-utils.js | 40 +++++++++++----------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'packages/integrations/netlify/test/static/test-utils.js') diff --git a/packages/integrations/netlify/test/static/test-utils.js b/packages/integrations/netlify/test/static/test-utils.js index 44fcf84e0..dfabfb002 100644 --- a/packages/integrations/netlify/test/static/test-utils.js +++ b/packages/integrations/netlify/test/static/test-utils.js @@ -1,29 +1,29 @@ // @ts-check -import { fileURLToPath } from 'node:url'; +import { fileURLToPath } from "node:url"; -export * from '../test-utils.js'; +export * from "../test-utils.js"; /** * * @returns {import('astro').AstroIntegration} */ export function testIntegration() { - return { - name: '@astrojs/netlify/test-integration', - hooks: { - 'astro:config:setup': ({ updateConfig }) => { - updateConfig({ - vite: { - resolve: { - alias: { - '@astrojs/netlify/netlify-functions.js': fileURLToPath( - new URL('../../dist/netlify-functions.js', import.meta.url) - ), - }, - }, - }, - }); - }, - }, - }; + return { + name: "@astrojs/netlify/test-integration", + hooks: { + "astro:config:setup": ({ updateConfig }) => { + updateConfig({ + vite: { + resolve: { + alias: { + "@astrojs/netlify/netlify-functions.js": fileURLToPath( + new URL("../../dist/netlify-functions.js", import.meta.url), + ), + }, + }, + }, + }); + }, + }, + }; } -- cgit v1.2.3