| 862 | const packageContents = require(path.join(projectPath, 'package.json')); |
| 863 | let cli = new MockCLI(); |
| 864 | project = new (class extends Project { |
| 865 | initializeAddons() { |
| 866 | if (this._addonsInitialized) { |
| 867 | return; |
| 868 | } |
| 869 | |
| 870 | super.initializeAddons(); |
| 871 | |
| 872 | this.addons.push(EMBER_SOURCE_ADDON); |
| 873 | } |
| 874 | })(projectPath, packageContents, cli.ui, cli); |
| 875 | }); |
| 876 | |
| 877 | afterEach(function () { |
nothing calls this directly
no outgoing calls
no test coverage detected