aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Elliot Dong <ascorbic@users.noreply.github.com> 2025-06-04 09:24:37 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2025-06-04 09:24:37 +0000
commit50a3788eaa12a51bd16d55c1f52d1b83f6c6d247 (patch)
treeaac2e5206b1288c84d0e9262b94d52ff19303aab
parent5a7797fdd6ad3f1377e2719c79da9486a232dfcd (diff)
downloadastro-50a3788eaa12a51bd16d55c1f52d1b83f6c6d247.tar.gz
astro-50a3788eaa12a51bd16d55c1f52d1b83f6c6d247.tar.zst
astro-50a3788eaa12a51bd16d55c1f52d1b83f6c6d247.zip
[ci] format
-rw-r--r--packages/astro/test/middleware.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/middleware.test.js b/packages/astro/test/middleware.test.js
index 1400ae668..223ec71d9 100644
--- a/packages/astro/test/middleware.test.js
+++ b/packages/astro/test/middleware.test.js
@@ -408,7 +408,7 @@ describe('Middleware should support clone request', () => {
it('should correctly render page', async () => {
const res = await fixture.fetch('/', {
method: 'POST',
- body: 'TEST BODY'
+ body: 'TEST BODY',
});
const html = await res.text();
assert.equal(html.includes('Hello Sequence and Request Clone'), true);