diff options
author | 2024-08-08 05:12:50 -0500 | |
---|---|---|
committer | 2024-08-08 12:12:50 +0200 | |
commit | 26c65914b1b900170e29a8f190e8948a24149338 (patch) | |
tree | 352c423c66cdcf1ae1cc57490142ffa803a28a23 /packages/integrations/node/test/errors.test.js | |
parent | f6b249c1f98b8fd9de1c254dce579b52d6c24315 (diff) | |
download | astro-26c65914b1b900170e29a8f190e8948a24149338.tar.gz astro-26c65914b1b900170e29a8f190e8948a24149338.tar.zst astro-26c65914b1b900170e29a8f190e8948a24149338.zip |
update formatter config (#11640)
* update formatter config
* format
---------
Co-authored-by: Erika <3019731+Princesseuh@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, 2 insertions, 2 deletions
diff --git a/packages/integrations/node/test/errors.test.js b/packages/integrations/node/test/errors.test.js index 365eaff6b..d75155aa5 100644 --- a/packages/integrations/node/test/errors.test.js +++ b/packages/integrations/node/test/errors.test.js @@ -56,7 +56,7 @@ describe('Errors', () => { const $ = cheerio.load(html); assert.equal($('p').text().trim(), 'Internal server error'); - } + }, ); it( @@ -84,6 +84,6 @@ describe('Errors', () => { } else { throw new Error('The response should take at most 2 chunks.'); } - } + }, ); }); |