promise-try-shim.test.mjs
38 lines 1.4 KB
Raw
sha256:b5f647cb9c409f563d4671fe3fc05ddea01fabfed9b41fc11cb923588e1c1baf mirror: GitHub Phase A durable MCP OAuth (#270) Human minor ⚠ breaking 11 days ago
1 /**
2 * Ensures lib/shims/promise-try.mjs can install Promise.try when absent (Node 20 / unpdf).
3 */
4 import { describe, it } from 'node:test';
5 import assert from 'node:assert/strict';
6
7 describe('lib/shims/promise-try', () => {
8 it('defines Promise.try when the global is missing (mirrors Node 20 CI)', async () => {
9 const d = Object.getOwnPropertyDescriptor(Promise, 'try');
10 if (!d?.configurable) {
11 // Very old runtimes: leave behavior to pdf golden tests
12 return;
13 }
14 const orig = d.value;
15 try {
16 // eslint-disable-next-line no-delete-var -- test setup
17 delete Promise.try;
18 assert.equal(typeof Promise.try, 'undefined');
19 const base = new URL('../lib/shims/promise-try.mjs', import.meta.url);
20 base.searchParams.set('t', String(Date.now()));
21 await import(base.href);
22 assert.equal(typeof Promise.try, 'function');
23 assert.equal(await Promise.try(() => 7), 7);
24 assert.equal(
25 await Promise.try((a, b) => a + b, 2, 3),
26 5,
27 'Promise.try(fn, ...args) must forward args (PDF.js workers rely on this)',
28 );
29 const err = new Error('sync-fail');
30 await assert.rejects(
31 () => Promise.try(() => { throw err; }),
32 (e) => e === err
33 );
34 } finally {
35 Object.defineProperty(Promise, 'try', { value: orig, configurable: true, writable: true });
36 }
37 });
38 });
File History 4 commits
sha256:b5f647cb9c409f563d4671fe3fc05ddea01fabfed9b41fc11cb923588e1c1baf mirror: GitHub Phase A durable MCP OAuth (#270) Human minor 11 days ago
sha256:d8c648b20a4d53b2673c5c082ee7edfa7b2fc9b11080832da1f38807b6bf940b fix(7C-L1b): route hosted delegation proposals through cani… Human minor 31 days ago
sha256:2827ba9e7632a4b141c50caf1e8f7d77abbc3515be20e7465f2bccb0ac4edf91 fix: repair endpoint now sets has_active_subscription when … Human minor 51 days ago