diff options
author | 2025-06-04 09:24:37 +0000 | |
---|---|---|
committer | 2025-06-04 09:24:37 +0000 | |
commit | 50a3788eaa12a51bd16d55c1f52d1b83f6c6d247 (patch) | |
tree | aac2e5206b1288c84d0e9262b94d52ff19303aab | |
parent | 5a7797fdd6ad3f1377e2719c79da9486a232dfcd (diff) | |
download | astro-50a3788eaa12a51bd16d55c1f52d1b83f6c6d247.tar.gz astro-50a3788eaa12a51bd16d55c1f52d1b83f6c6d247.tar.zst astro-50a3788eaa12a51bd16d55c1f52d1b83f6c6d247.zip |
[ci] format
-rw-r--r-- | packages/astro/test/middleware.test.js | 2 |
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); |