Hello, in my generator I have a folder is going to be generated outside of the current directory. I'm using move action to do that, and works perfectly.
saofile.js
actions() {
return [
{
type: 'add',
files: '**'
},
{
type: 'move',
patterns: {
'external-folder': '../external-folder'
}
}
]
}
But when I started writing tests, those files are not in the fileList
const stream = await sao.mock( { generator })
console.log(stream.fileList) // external-folder is ignored
Hello, in my generator I have a folder is going to be generated outside of the current directory. I'm using move action to do that, and works perfectly.
saofile.js
But when I started writing tests, those files are not in the
fileList