test-sdk/test/test.ts
2020-07-05 17:53:49 +00:00

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();