fix(core): update

This commit is contained in:
2019-09-22 15:16:27 +02:00
parent 3f749dfdd2
commit df21ebd581
2 changed files with 45 additions and 5 deletions

40
test/test.7.taskloop.ts Normal file
View File

@@ -0,0 +1,40 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as taskbuffer from '../ts';
let preTask: taskbuffer.Task;
let afterTask: taskbuffer.Task;
let mainTask: taskbuffer.Task;
tap.test('should create tasks', async () => {
preTask = new taskbuffer.Task({
name: 'myPreTask',
taskFunction: async () => {
console.log('pretask executed :)');
}
});
afterTask = new taskbuffer.Task({
name: 'myAfterTask',
taskFunction: async () => {
console.log('afterTask executed :)');
},
preTask,
afterTask
});
mainTask = new taskbuffer.Task({
name: 'mainTask',
taskFunction: async () => {
console.log('main task executed');
},
preTask,
afterTask
});
});
tap.test('should execute the mainTasj', async () => {
await mainTask.trigger();
});
tap.start();