# Pastebin K6TI4mhA test "request stress level": proc doTest() {.async.} = var client = newAsyncHttpClient() let resp = await client.post("http://localhost:" & $jesterPort & "/stress-level/request", body = $body) check resp.status.startsWith("200") let received = resp.body.parseFloat check rightAnswer == received asyncCheck doTest()