blob: 027474424a2e4f9cada8b488c4459849e6920a4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import * as assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { AstroCookies } from '../../../dist/core/cookies/index.js';
import { apply as applyPolyfill } from '../../../dist/core/polyfill.js';
applyPolyfill();
describe('astro/src/core/cookies', () => {
describe('errors', () => {
it('Produces an error if the response is already sent', () => {
const req = new Request('http://example.com/', {});
const cookies = new AstroCookies(req);
req[Symbol.for('astro.responseSent')] = true;
try {
cookies.set('foo', 'bar');
assert.equal(false, true);
} catch (err) {
assert.equal(err.name, 'ResponseSentError');
}
});
});
});
|