summaryrefslogtreecommitdiff
path: root/packages/integrations/node/test/errors.test.js
diff options
context:
space:
mode:
authorGravatar Alexander Niebuhr <alexander@nbhr.io> 2024-08-29 08:45:22 +0200
committerGravatar Alexander Niebuhr <alexander@nbhr.io> 2024-08-29 08:45:22 +0200
commitb93bc0a0c70591e83a88f171dec3ba2ee8abb385 (patch)
treea24f8d900d37bbeccf48fe6b7467e97cc41bdb57 /packages/integrations/node/test/errors.test.js
parentca01265283b6ae8d2cf478a470fe8ecf9740376b (diff)
downloadastro-b93bc0a0c70591e83a88f171dec3ba2ee8abb385.tar.gz
astro-b93bc0a0c70591e83a88f171dec3ba2ee8abb385.tar.zst
astro-b93bc0a0c70591e83a88f171dec3ba2ee8abb385.zip
chore: supress linting
Diffstat (limited to 'packages/integrations/node/test/errors.test.js')
-rw-r--r--packages/integrations/node/test/errors.test.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/integrations/node/test/errors.test.js b/packages/integrations/node/test/errors.test.js
index 802fa6e25..9bf4aa29b 100644
--- a/packages/integrations/node/test/errors.test.js
+++ b/packages/integrations/node/test/errors.test.js
@@ -20,6 +20,7 @@ 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();
@@ -58,7 +59,7 @@ describe('Errors', () => {
const $ = cheerio.load(html);
assert.equal($('p').text().trim(), 'Internal server error');
- },
+ }
);
it(
@@ -86,6 +87,6 @@ describe('Errors', () => {
} else {
throw new Error('The response should take at most 2 chunks.');
}
- },
+ }
);
});