()
| 101 | |
| 102 | it('should not fail on when options are frozen', function() { |
| 103 | function create() { |
| 104 | const defaults = Object.freeze({default: true}); |
| 105 | const options = Object.freeze({value: true}); |
| 106 | return _createResolver([options, defaults]); |
| 107 | } |
| 108 | expect(create).not.toThrow(); |
| 109 | }); |
| 110 |
nothing calls this directly
no test coverage detected