(newCommandOptions)
| 111 | it('interactive new is entered when no app/addon name is provided', async function () { |
| 112 | class InteractiveNewTaskMock extends InteractiveNewTask { |
| 113 | run(newCommandOptions) { |
| 114 | return super.run(newCommandOptions, { |
| 115 | blueprint: 'addon', |
| 116 | name: 'foo', |
| 117 | langSelection: 'en-US', |
| 118 | packageManager: 'npm', |
| 119 | ciProvider: 'github', |
| 120 | }); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | class CreateAndStepIntoDirectoryTask extends Task { |