(config)
| 341 | it('should not call the same plugin configure twice when using both module id and fns', done => { |
| 342 | let count = 0; |
| 343 | function module1Configure(config) { |
| 344 | config |
| 345 | .plugin('c.js') |
| 346 | .plugin('b.js'); |
| 347 | } |
| 348 | function module2Configure(config) { |
| 349 | config |
| 350 | .plugin('c.js') |
nothing calls this directly
no test coverage detected
searching dependent graphs…