()
| 926 | |
| 927 | it('throws if unavailable addon is specified', function () { |
| 928 | function load() { |
| 929 | process.env.EMBER_ENV = 'foo'; |
| 930 | |
| 931 | new EmberApp({ |
| 932 | project, |
| 933 | addons: { |
| 934 | exclude: ['ember-cli-self-troll'], |
| 935 | }, |
| 936 | }); |
| 937 | } |
| 938 | |
| 939 | expect(load).to.throw('Addon "ember-cli-self-troll" defined in "exclude" is not found'); |
| 940 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…