2019-08-22 15:40:10 +02:00
|
|
|
import { expect, tap } from '@pushrocks/tapbundle';
|
2022-10-26 11:35:19 +02:00
|
|
|
import * as typedrequestInterfaces from '../ts/index.js';
|
2019-08-22 15:40:10 +02:00
|
|
|
|
2020-02-10 21:08:52 +00:00
|
|
|
interface IRequestSample
|
|
|
|
extends typedrequestInterfaces.implementsTR<
|
|
|
|
typedrequestInterfaces.ITypedRequest,
|
|
|
|
IRequestSample
|
|
|
|
> {
|
2020-02-10 21:06:51 +00:00
|
|
|
method: 'hey';
|
|
|
|
request: {};
|
|
|
|
response: {};
|
|
|
|
}
|
|
|
|
|
2019-08-22 15:40:10 +02:00
|
|
|
tap.test('first test', async () => {
|
2019-08-23 16:57:45 +02:00
|
|
|
typedrequestInterfaces;
|
2019-08-22 15:40:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
tap.start();
|