This commit is contained in:
2017-05-27 23:47:39 +02:00
parent f5ffb7fc67
commit 73ad2d6193
4 changed files with 17 additions and 5 deletions

View File

@ -175,10 +175,10 @@ tap.test('.Smartfile -> should produce vinyl compatible files', async () => {
tap.test('should output a smartfile array to disk', async () => {
let smartfileArray = await smartfile.fs.fileTreeToObject('./test/testfolder/', '*')
for (let smartfile of smartfileArray) {
// console.log(smartfile.relative)
// console.log(smartfile.path)
// console.log(smartfile.base)
// console.log(smartfile.parsedPath)
console.log(smartfile.relative)
console.log(smartfile.path)
console.log(smartfile.base)
console.log(smartfile.parsedPath)
}
await smartfile.memory.smartfileArrayToFs(smartfileArray, path.resolve('./test/temp/testoutput/'))
})