smarttime/test/test.cronmanager.ts

12 lines
280 B
TypeScript
Raw Normal View History

2019-04-10 09:34:30 +00:00
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();