diff options
author | 2025-02-07 14:59:13 +0000 | |
---|---|---|
committer | 2025-02-07 14:59:13 +0000 | |
commit | 74c0bbeb390a68b3a345c96f62bc3e540e94ca27 (patch) | |
tree | c054354ba8170a746e037ffb171aec92c19b1ed0 /packages/integrations/node/test/errors.test.js | |
parent | c0be893bcff547fd50f05b62bd462237baa3c103 (diff) | |
download | astro-74c0bbeb390a68b3a345c96f62bc3e540e94ca27.tar.gz astro-74c0bbeb390a68b3a345c96f62bc3e540e94ca27.tar.zst astro-74c0bbeb390a68b3a345c96f62bc3e540e94ca27.zip |
chore: fix linting issues, integration tests (#13187)
* chore: fix linting issues
* chore: update packages and directories
* apply suggestions
Co-authored-by: florian-lefebvre <69633530+florian-lefebvre@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/node/test/errors.test.js')
-rw-r--r-- | packages/integrations/node/test/errors.test.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/integrations/node/test/errors.test.js b/packages/integrations/node/test/errors.test.js index 69ae1ec5c..66ea9d675 100644 --- a/packages/integrations/node/test/errors.test.js +++ b/packages/integrations/node/test/errors.test.js @@ -20,7 +20,6 @@ describe('Errors', () => { }); let devPreview; - // biome-ignore lint/suspicious/noDuplicateTestHooks: <explanation> before(async () => { // The two tests that need the server to run are skipped // devPreview = await fixture.preview(); @@ -76,9 +75,6 @@ describe('Errors', () => { const chunk2 = await reader.read(); const chunk3 = await reader.read(); assert.equal(chunk1.done, false); - console.log(chunk1); - console.log(chunk2); - console.log(chunk3); if (chunk2.done) { assert.equal(decoder.decode(chunk1.value), result.join('')); } else if (chunk3.done) { |