interfaces/test/test.ts
2021-03-08 17:30:04 +00:00

11 lines
268 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as interfaces from '../ts/index';
tap.test('first test', async () => {
console.log(
'hi' as interfaces.requests.checkRequests.IRequest_PageCheck_Assumption['request']['domain']
);
});
tap.start();