hk-planner/frontend/node_modules/es-abstract-get/test/Get.js
jtricerolph 18e24efbeb Add sync error logging, extend error flash, fix unload saves
- Log workforce sync errors to backend stdout so they appear in docker logs
- Extend error flash from 5s to 15s so errors are readable
- Replace sendBeacon (POST-only) with keepalive fetch (PUT) on unload —
  sendBeacon was hitting 404s on all three unload saves

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-22 14:19:38 +00:00

43 lines
971 B
JavaScript

'use strict';
var test = require('tape');
var v = require('es-value-fixtures');
var Get = require('../Get');
test('Get', function (t) {
t['throws'](
// @ts-expect-error
function () { return Get('a', 'a'); },
TypeError,
'Throws a TypeError if `O` is not an Object'
);
t['throws'](
// @ts-expect-error
function () { return Get({ 7: 7 }, 7); },
TypeError,
'Throws a TypeError if `P` is not a property key'
);
var sentinel = {};
t.test('Symbols', { skip: !v.hasSymbols }, function (st) {
var sym = Symbol('sym');
var obj = /** @type {Record<symbol, unknown>} */ ({});
obj[sym] = sentinel;
st.equal(Get(obj, sym), sentinel, 'returns property `P` if it exists on object `O`');
st.end();
});
t.equal(Get({ a: sentinel }, 'a'), sentinel, 'returns property `P` if it exists on object `O`');
t.equal(
// @ts-expect-error
Get({}, 'a'),
undefined,
'returns undefined if property `P` does not exist on object `O`'
);
t.end();
});