现在有两个项目。测试项目A使用mocha + axios + chai,Server项目使用node express。现在我想统计一下服务器项目B在运行测试项目A时能达到多少覆盖率
项目A(测试项目)
import axios from 'axios';
describe('Base API', () => {
it('is healthy', async () => {
const res = await axios.get('/hello');
expect(res, 204);
});
});
项目B(服务器项目)
import express from 'express';
const baseRouter = express.Router();
baseRouter.get('/hello',(_req, next) => next(204));
export default baseRouter;
我应该怎么做?