Re: [whatwg/fetch] [Feature request] Add a `CookieStore` option to `Request` & `Response` (Issue #1384)

Cyberpunk-00 left a comment (whatwg/fetch#1384)

// tests.mjs
import assert from 'node:assert';
import test from 'node:test';

test('that 1 is equal 1', () => {
  assert.strictEqual(1, 1);
});

test('that throws as 1 is not equal 2', () => {
  // throws an exception because 1 != 2
  assert.strictEqual(1, 2);
});

// run with `node tests.mjs`


-- 
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/1384#issuecomment-3820876865
You are receiving this because you are subscribed to this thread.

Message ID: <whatwg/fetch/issues/1384/3820876865@github.com>

Received on Thursday, 29 January 2026 23:12:09 UTC