(commandOptions)
| 127 | |
| 128 | class InitCommand extends Command { |
| 129 | run(commandOptions) { |
| 130 | expect(commandOptions).to.deep.include({ |
| 131 | blueprint: 'addon', |
| 132 | name: 'foo', |
| 133 | lang: 'en-US', |
| 134 | packageManager: 'npm', |
| 135 | ciProvider: 'github', |
| 136 | }); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | command.tasks.InteractiveNew = InteractiveNewTaskMock; |