11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||
|
import * as smarthomebridge from '../ts/index';
|
||
|
|
||
|
import * as homebridge from 'homebridge';
|
||
|
|
||
|
tap.test('first test', async () => {
|
||
|
console.log(smarthomebridge.standardExport);
|
||
|
});
|
||
|
|
||
|
tap.start();
|