(args, files)
| 62 | } |
| 63 | |
| 64 | const assertDestroyAfterGenerate = async function (args, files) { |
| 65 | await initApp(); |
| 66 | |
| 67 | await generate(args); |
| 68 | assertFilesExist(files); |
| 69 | |
| 70 | let result = await destroy(args); |
| 71 | expect(result, 'destroy command did not exit with errorCode').to.be.an('object'); |
| 72 | assertFilesNotExist(files); |
| 73 | }; |
| 74 | |
| 75 | it('blueprint foo', function () { |
| 76 | let commandArgs = ['blueprint', 'foo']; |
no test coverage detected
searching dependent graphs…