Files
remoteingress/test/test.ts

13 lines
387 B
TypeScript
Raw Normal View History

import { expect, tap } from '@push.rocks/tapbundle';
import * as remoteingress from '../ts/index.js';
2024-03-24 14:44:44 +01:00
tap.test('should export RemoteIngressHub', async () => {
expect(remoteingress.RemoteIngressHub).toBeTypeOf('function');
});
2024-03-24 14:44:44 +01:00
tap.test('should export RemoteIngressEdge', async () => {
expect(remoteingress.RemoteIngressEdge).toBeTypeOf('function');
});
export default tap.start();