- From: Cyberpunk-00 <notifications@github.com>
- Date: Thu, 29 Jan 2026 15:12:05 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 29 January 2026 23:12:09 UTC
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