(options)
| 7 | |
| 8 | class MockCLI { |
| 9 | constructor(options) { |
| 10 | options = options || {}; |
| 11 | |
| 12 | this.ui = options.ui || new MockUI(); |
| 13 | this.root = path.join(__dirname, '..', '..'); |
| 14 | this.npmPackage = options.npmPackage || 'ember-cli'; |
| 15 | this.instrumentation = options.instrumentation || new Instrumentation({}); |
| 16 | this.packageInfoCache = new PackageInfoCache(this.ui); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | module.exports = MockCLI; |
nothing calls this directly
no outgoing calls
no test coverage detected