Files
remoteingress/test/test.ts

13 lines
387 B
TypeScript

import { expect, tap } from '@push.rocks/tapbundle';
import * as remoteingress from '../ts/index.js';
tap.test('should export RemoteIngressHub', async () => {
expect(remoteingress.RemoteIngressHub).toBeTypeOf('function');
});
tap.test('should export RemoteIngressEdge', async () => {
expect(remoteingress.RemoteIngressEdge).toBeTypeOf('function');
});
export default tap.start();