fix(core): update

This commit is contained in:
2019-04-10 11:34:30 +02:00
parent f6be9b71f1
commit cff5b5a7f4
10 changed files with 895 additions and 216 deletions

11
test/test.cronmanager.ts Normal file
View File

@ -0,0 +1,11 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as smarttime from '../ts/index';
let testCronManager: smarttime.CronManager;
tap.test('should create a valid instance of cronmanager', async () => {
testCronManager = new smarttime.CronManager();
});
tap.start();