MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / run

Method run

tests/unit/tasks/addon-install-test.js:28–33  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

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;
31 done();
32 return Promise.resolve();
33 }
34 };
35
36 let addonInstallTask = new AddonInstallTask({

Callers 8

test-test.jsFile · 0.45
runServeTaskFunction · 0.45
git-init-test.jsFile · 0.45
runBuildWatchTaskFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected