summaryrefslogtreecommitdiff
path: root/packages/astro/test/sessions.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/sessions.test.js')
-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', () => {