(blueprintOpts)
| 69 | it('Uses the name of the closest project to when calling installBlueprint', function () { |
| 70 | tasks.InstallBlueprint = class extends Task { |
| 71 | run(blueprintOpts) { |
| 72 | expect(blueprintOpts.rawName).to.equal('some-random-name'); |
| 73 | return Promise.reject('Called run'); |
| 74 | } |
| 75 | }; |
| 76 | |
| 77 | buildCommand(); |
nothing calls this directly
no outgoing calls
no test coverage detected