This commit is contained in:
Philipp Kunz 2017-04-30 00:54:18 +02:00
parent b36415e6dc
commit 5da7697281
2 changed files with 4 additions and 3 deletions

View File

@ -24,14 +24,14 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartgulp#README", "homepage": "https://gitlab.com/pushrocks/smartgulp#README",
"devDependencies": { "devDependencies": {
"gulp-function": "^2.2.3", "gulp-function": "^2.2.5",
"tapbundle": "^1.0.10" "tapbundle": "^1.0.10"
}, },
"dependencies": { "dependencies": {
"@types/lodash": "^4.14.63", "@types/lodash": "^4.14.63",
"lodash": "^4.17.4", "lodash": "^4.17.4",
"smartevent": "^1.0.1", "smartevent": "^1.0.1",
"smartfile": "^4.2.0", "smartfile": "^4.2.1",
"smartq": "^1.1.1", "smartq": "^1.1.1",
"smartstream": "^1.0.8", "smartstream": "^1.0.8",
"typings-global": "^1.0.16" "typings-global": "^1.0.16"

View File

@ -13,8 +13,9 @@ tap.test('smartgulp.src -> should read a directoy', async () => {
})) }))
.pipe(gulpFunction.atEnd(async () => { .pipe(gulpFunction.atEnd(async () => {
console.log('hey') console.log('hey')
done.resolve()
})) }))
done.resolve()
await done.promise await done.promise
}) })