11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { expect, tap } from '@pushrocks/tapbundle';
|
|
import * as testSdk from '../ts/index';
|
|
|
|
let testServer: testSdk.AgTestServer;
|
|
|
|
tap.test('first test', async () => {
|
|
console.log('TODO');
|
|
});
|
|
|
|
tap.start();
|