(commandOptions)
| 93 | |
| 94 | command.commands.Init = Command.extend({ |
| 95 | run(commandOptions) { |
| 96 | expect(commandOptions).to.contain.keys('customOption'); |
| 97 | expect(commandOptions.customOption).to.equal('customValue'); |
| 98 | return Promise.resolve('Called run'); |
| 99 | }, |
| 100 | }); |
| 101 | |
| 102 | td.when(Blueprint.lookup('app'), { ignoreExtraArgs: true }).thenReturn({ |
nothing calls this directly
no outgoing calls
no test coverage detected