aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/webcomponents/polyfill.test.ts
blob: 4fb4621547ed50c7bc8e8913fa55c9b6a484b37e (plain)
1
2
3
4
5
6
7
import {weakRefClass} from './polyfills.ts';

test('polyfillWeakRef', () => {
  const WeakRef = weakRefClass();
  const r = new WeakRef(123);
  expect(r.deref()).toEqual(123);
});