Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Mocha 和 supertest 在我的 NodeJS 服务器中进行一些简单的测试。我现在想测试这种情况:
该 URL 将与在超集中运行的服务器相同。因此,如果我第一次调用.get('/some-data')生成的 URL 将是完全限定的,例如http://localhost:3456/a-path.
.get('/some-data')
http://localhost:3456/a-path
我不清楚如何设置它,或者是否可以使用这些工具。
Yout 可能只需要请求之类的东西,然后他们发出 http-request 并检查状态码是否为 200 等。