MCPcopy Create free account
hub / github.com/Effect-TS/effect / assertServerText

Function assertServerText

packages/platform/node/test/HttpApi.test.ts:46–49  ·  view source on GitHub ↗
(res: HttpClientResponse.HttpClientResponse, status: number, text: string)

Source from the content-addressed store, hash-verified

44} from "effect/unstable/httpapi"
45
46function* assertServerText(res: HttpClientResponse.HttpClientResponse, status: number, text: string) {
47 assert.strictEqual(res.status, status)
48 assert.strictEqual(yield* res.text, text)
49}
50
51function* assertServerJson(res: HttpClientResponse.HttpClientResponse, status: number, json: unknown) {
52 assert.strictEqual(res.status, status)

Callers 1

HttpApi.test.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected