()
| 33 | (function TestConstructFinalizationRegistryWithCallableProxyAsCleanup() { |
| 34 | let handler = {}; |
| 35 | let obj = () => {}; |
| 36 | let proxy = new Proxy(obj, handler); |
| 37 | let fg = new FinalizationRegistry(proxy); |
| 38 | })(); |
no outgoing calls
no test coverage detected