typedrequest/test/test.ts

9 lines
182 B
TypeScript
Raw Normal View History

2019-08-21 12:36:16 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2019-08-21 12:37:02 +00:00
import * as typedrequest from '../ts/index';
2019-08-21 12:36:16 +00:00
tap.test('first test', async () => {
2019-08-23 12:35:50 +00:00
typedrequest.TypedRequest;
2019-08-21 12:37:02 +00:00
});
2019-08-21 12:36:16 +00:00
2019-08-21 12:37:02 +00:00
tap.start();