summaryrefslogtreecommitdiff
path: root/packages/integrations/node/test/errors.test.js
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2025-02-07 14:59:13 +0000
committerGravatar GitHub <noreply@github.com> 2025-02-07 14:59:13 +0000
commit74c0bbeb390a68b3a345c96f62bc3e540e94ca27 (patch)
treec054354ba8170a746e037ffb171aec92c19b1ed0 /packages/integrations/node/test/errors.test.js
parentc0be893bcff547fd50f05b62bd462237baa3c103 (diff)
downloadastro-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.js4
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) {