fix(core): update

This commit is contained in:
2019-09-23 18:06:43 +02:00
parent 2d2788d1ca
commit 2cc212f210
5 changed files with 214 additions and 182 deletions

View File

@ -37,12 +37,14 @@ tap.test('should create tasks', async () => {
console.log('afterTask executed :)');
return x;
},
preTask,
preTask: () => {
return preTask;
},
afterTask
});
});
tap.test('should execute the mainTasj', async () => {
tap.test('should execute the mainTask', async () => {
await mainTask.trigger();
});