()
| 34 | }); |
| 35 | |
| 36 | function removeAddonPath() { |
| 37 | let packageJsonPath = path.join(process.cwd(), 'package.json'); |
| 38 | let packageJson = fs.readJsonSync(packageJsonPath); |
| 39 | |
| 40 | delete packageJson['ember-addon'].paths; |
| 41 | |
| 42 | return fs.writeJsonSync(packageJsonPath, packageJson); |
| 43 | } |
| 44 | |
| 45 | it('generate blueprint foo using lib', async function () { |
| 46 | // build an app with an in-repo addon in a non-standard path |
no outgoing calls
no test coverage detected
searching dependent graphs…