it('should disconnect any clients that attempt to connect from an origin that is not in the allowed origins list', async () => {
            const hub = new Hub({ port: 7000, allowedOrigins: ['localhost:4000'] });
            const server = httpShutdown(hub.server);
            server.listen(7000);
            const hubClient = new HubClient({ url: 'ws://localhost:7000' });