(sleep)
| 5 | const VALUE = 'world'; |
| 6 | |
| 7 | function wait(sleep) { |
| 8 | return new Promise(function (resolve) { |
| 9 | setTimeout(resolve, sleep); |
| 10 | }); |
| 11 | } |
| 12 | |
| 13 | it('should expose promisifyed methods', done => { |
| 14 | const cache = new InMemoryCacheAdapter({ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…