From 10c049196cb42b53d217c37957db00861c6d6c4a Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Wed, 12 Jun 2024 17:00:44 +0100 Subject: [PATCH] relax the assertion --- packages/astro/test/error-non-error.test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/astro/test/error-non-error.test.js b/packages/astro/test/error-non-error.test.js index 338b1707b15e..c7b7e8ed040c 100644 --- a/packages/astro/test/error-non-error.test.js +++ b/packages/astro/test/error-non-error.test.js @@ -24,8 +24,6 @@ describe('Can handle errors that are not instanceof Error', () => { let res = await fixture.fetch('/'); let html = await res.text(); - console.log('html', html); - assert.equal(html.includes('Error'), true); res = await fixture.fetch('/'); await res.text();