summaryrefslogtreecommitdiff
path: root/packages/astro/test/units/cookies/error.test.js
blob: 3052042d40f427c80e15b65fceb2be606105e224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { expect } from 'chai';
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');
				expect(false).to.equal(true);
			} catch (err) {
				expect(err.errorCode).to.equal(3030);
			}
		});
	});
});