feat: config wizard UI improvements

This commit is contained in:
NGPixel
2017-11-05 01:36:07 -04:00
parent 98d311145b
commit 1658fcbf2e
10 changed files with 180 additions and 194 deletions

View File

@@ -68,5 +68,12 @@ module.exports = Promise.mapSeries([
() => {
console.info(colors.white(' └── ') + colors.green('Clearing fuse-box cache...'))
return fs.emptyDirAsync('./.fusebox')
},
/**
* Delete Test Results
*/
() => {
console.info(colors.white(' └── ') + colors.green('Clearing test results...'))
return fs.remove('./test_results')
}
], f => { return f() })