From 4e7d97fb09f8180572fca5d823ad8edcda7b50b4 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Thu, 6 Feb 2025 15:08:28 +0000 Subject: [ci] format --- packages/integrations/netlify/test/functions/cookies.test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'packages/integrations/netlify/test/functions/cookies.test.js') diff --git a/packages/integrations/netlify/test/functions/cookies.test.js b/packages/integrations/netlify/test/functions/cookies.test.js index 9d2565d91..c8f409eec 100644 --- a/packages/integrations/netlify/test/functions/cookies.test.js +++ b/packages/integrations/netlify/test/functions/cookies.test.js @@ -15,12 +15,12 @@ describe( it('Can set multiple', async () => { const entryURL = new URL( './fixtures/cookies/.netlify/v1/functions/ssr/ssr.mjs', - import.meta.url + import.meta.url, ); const { default: handler } = await import(entryURL); const resp = await handler( new Request('http://example.com/login', { method: 'POST', body: '{}' }), - {} + {}, ); assert.equal(resp.status, 301); assert.equal(resp.headers.get('location'), '/'); @@ -30,7 +30,7 @@ describe( it('renders dynamic 404 page', async () => { const entryURL = new URL( './fixtures/cookies/.netlify/v1/functions/ssr/ssr.mjs', - import.meta.url + import.meta.url, ); const { default: handler } = await import(entryURL); const resp = await handler( @@ -39,7 +39,7 @@ describe( 'x-test': 'bar', }, }), - {} + {}, ); assert.equal(resp.status, 404); const text = await resp.text(); @@ -49,5 +49,5 @@ describe( }, { timeout: 120000, - } + }, ); -- cgit v1.2.3