smartdaemon/test/test.ts
2019-09-03 15:21:30 +02:00

12 lines
349 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as smartdaemon from '../ts/index';
let testSmartdaemon: smartdaemon.SmartDaemon;
tap.test('should create an instance of smartdaemon', async () => {
testSmartdaemon = new smartdaemon.SmartDaemon();
expect(testSmartdaemon).to.be.instanceOf(smartdaemon.SmartDaemon);
});
tap.start();