(array)
| 125 | }); |
| 126 | } |
| 127 | function removeIgnored(array) { |
| 128 | remove(array, function (fn) { |
| 129 | return Blueprint.ignoredFiles.some(function (ignoredFile) { |
| 130 | return minimatch(fn, ignoredFile, { |
| 131 | matchBase: true, |
| 132 | }); |
| 133 | }); |
| 134 | }); |
| 135 | } |
| 136 | |
| 137 | it('ember init', async function () { |
| 138 | await ember(['init', '--skip-npm']); |
no test coverage detected
searching dependent graphs…