(args)
| 75 | }; |
| 76 | |
| 77 | const destroyAfterGenerate = async function (args) { |
| 78 | await initApp(); |
| 79 | |
| 80 | replaceFile('config/environment.js', '(var|let|const) ENV = {', "$1 ENV = {\npodModulePrefix: 'app/pods', \n"); |
| 81 | |
| 82 | await generate(args); |
| 83 | return await destroy(args); |
| 84 | }; |
| 85 | |
| 86 | it('blueprint foo --pod', function () { |
| 87 | let commandArgs = ['blueprint', 'foo', '--pod']; |
no test coverage detected
searching dependent graphs…