diff options
author | 2024-08-29 08:17:42 +0200 | |
---|---|---|
committer | 2024-08-29 08:17:42 +0200 | |
commit | 1b6f89c5b4b7a3e3c9cc0ca639e0a5dbfca01952 (patch) | |
tree | f9bcdf8d54f8d8f03fd75a7bff35193e72700853 /packages/integrations/node/test/errors.test.js | |
parent | f6819f253f48f670e210df08a984abb1b9bfde4b (diff) | |
download | astro-1b6f89c5b4b7a3e3c9cc0ca639e0a5dbfca01952.tar.gz astro-1b6f89c5b4b7a3e3c9cc0ca639e0a5dbfca01952.tar.zst astro-1b6f89c5b4b7a3e3c9cc0ca639e0a5dbfca01952.zip |
chore: supress linting
Diffstat (limited to 'packages/integrations/node/test/errors.test.js')
-rw-r--r-- | packages/integrations/node/test/errors.test.js | 5 |
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.'); } - }, + } ); }); |