smarttime/test/test.cronmanager.ts
2019-04-10 11:34:30 +02:00

12 lines
280 B
TypeScript

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();