(condition: any)
| 70 | * @param condition |
| 71 | */ |
| 72 | export function assert(condition: any): asserts condition { |
| 73 | expect(condition).to.be.ok(); |
| 74 | } |
| 75 | |
| 76 | export function getPort(io: Server): number { |
| 77 | return (io.httpServer.address() as AddressInfo).port; |
no test coverage detected