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