11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import { expect, tap } from '@pushrocks/tapbundle';
|
|
import * as deesComms from '../ts/index';
|
|
|
|
let deesCommsTest: deesComms.DeesComms;
|
|
|
|
tap.test('first test', async () => {
|
|
deesCommsTest = new deesComms.DeesComms();
|
|
});
|
|
|
|
tap.start();
|