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();