| 25 | describe('when no save flag specified in blueprintOptions', function () { |
| 26 | it('calls npm install with --save-dev as a default', function (done) { |
| 27 | let MockNpmInstallTask = class extends Task { |
| 28 | run(options) { |
| 29 | expect(options.save).to.not.be.true; |
| 30 | expect(options['save-dev']).to.be.true; |
nothing calls this directly
no outgoing calls
no test coverage detected