summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matt Kane <ascorbic@users.noreply.github.com> 2025-04-02 10:32:03 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2025-04-02 10:32:03 +0000
commitf5a8b07ac50f55eb6f1bd65a511940cf1fbe8e85 (patch)
tree83f84b83bcc0a3df95d3f171db8c8829b59cae98
parentc43bf8cd0513c2260d4ba32b5beffe97306e2e09 (diff)
downloadastro-f5a8b07ac50f55eb6f1bd65a511940cf1fbe8e85.tar.gz
astro-f5a8b07ac50f55eb6f1bd65a511940cf1fbe8e85.tar.zst
astro-f5a8b07ac50f55eb6f1bd65a511940cf1fbe8e85.zip
[ci] format
-rw-r--r--packages/astro/test/sessions.test.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/astro/test/sessions.test.js b/packages/astro/test/sessions.test.js
index 212ed4657..9ac94c944 100644
--- a/packages/astro/test/sessions.test.js
+++ b/packages/astro/test/sessions.test.js
@@ -105,7 +105,7 @@ describe('Astro.session', () => {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
- 'Origin': 'http://example.com',
+ Origin: 'http://example.com',
},
body: new URLSearchParams({ productId: 'item1' }),
});
@@ -126,7 +126,6 @@ describe('Astro.session', () => {
const cartData = devalue.parse(await secondResponse.text());
assert.deepEqual(cartData.cart, firstResponseData.cart);
});
-
});
describe('Development', () => {