From dc306cfc41267d7e0656966afa141bdbeeab0b70 Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Thu, 8 Aug 2024 11:34:31 -0400 Subject: [PATCH] chore: remove stray console log --- packages/astro/test/actions.test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/astro/test/actions.test.js b/packages/astro/test/actions.test.js index 90bc2ff0fc..341e7c8d64 100644 --- a/packages/astro/test/actions.test.js +++ b/packages/astro/test/actions.test.js @@ -200,7 +200,6 @@ describe('Astro Actions', () => { assert.equal(res.status, 401); const html = await res.text(); - console.log({ html }); let $ = cheerio.load(html); assert.equal($('#error-message').text(), 'Not logged in'); assert.equal($('#error-code').text(), 'UNAUTHORIZED'); @@ -362,7 +361,7 @@ async function followExpectedRedirect(req, app) { const redirect = await app.render(req, { addCookieHeader: true }); assert.ok( validRedirectStatuses.has(redirect.status), - `Expected redirect status, got ${redirect.status}` + `Expected redirect status, got ${redirect.status}`, ); const redirectUrl = new URL(redirect.headers.get('Location'), req.url);