gpt4 book ai didi

express - 如何使用 AVA 测试 Express.js 应用程序?

转载 作者:行者123 更新时间:2023-12-04 13:39:33 26 4
gpt4 key购买 nike

我可以用 AVA 很好地测试我的模型,但我也想测试路线。

我觉得应该可以访问 Express 应用程序对象,并将其传递给它一个 URL,然后查看返回的内容,但我不知道如何让 Express 对象使用它。

最佳答案

经过一些玩耍和引用 supertest repo ,我能够得到以下工作:

const test = require("ava");
const request = require("supertest");
const express = require("express");

test("test express handler with supertest", async t => {
// in async tests, it's useful to declare the number of
// assertions this test contains
t.plan(3);

// define (or import) your express app here
const app = express();
app.get("/", (req, res) => {
res.json({
message: "Hello, World!",
});
});

// make a request with supertest
const res = await request(app).get("/").send();

// make assertions on the response
t.is(res.ok, true);
t.is(res.type, "application/json");
t.like(res.body, {
message: "Hello, World!",
});
});
我倾向于使用以下 shell 命令运行 AVA:
yarn ava --verbose --watch

关于express - 如何使用 AVA 测试 Express.js 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59546920/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com