(name: string, reason: string)
| 409 | } |
| 410 | |
| 411 | function skipTest(name: string, reason: string): void { |
| 412 | console.log(` ${name} ... SKIP (${reason})`); |
| 413 | results.push({ name, status: "SKIP" }); |
| 414 | } |
| 415 | |
| 416 | async function expectChatContent(res: Response, expectedStatus = 200): Promise<string> { |
| 417 | const payload = await readResponseBody(res); |