(options)
| 87 | |
| 88 | it('should fail loading an improperly configured adapter', done => { |
| 89 | const Adapter = function (options) { |
| 90 | if (!options.foo) { |
| 91 | throw 'foo is required for that adapter'; |
| 92 | } |
| 93 | }; |
| 94 | const adapterOptions = { |
| 95 | param: 'key', |
| 96 | doSomething: function () {}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…