如何测试异步调用以便伊斯坦布尔覆盖它?

How to test async calls so istanbul will cover it?

我正在测试单元测试我的 API。在我编写了所有测试之后,我实现了覆盖工具 istanbul。它涵盖了除了分支之外的所有内容。查看报告后,我发现异步调用未经过测试,但实际上它们 运行 至少 5 次。在这种情况下 async 是 运行 15 次。

我测试的小例子:

describe('GET /tables', () => {
  it('should GET tables', (done) => {
    chai.request(server)
      .get('/api/v1/tables')
      .then((res) => {
        expect(res).to.have.status(200);
        expect(res.body).to.be.a('array');
        done();
      })
      .catch((err) => {
        done(err)
      })
  });
})

该测试的部分覆盖率报告:

export default async (req, res) => {
  let tables = [];
  try {
    tables = await Tables.findAndCountAll({
      where: {
        ...req.filter,
        material: null
      },
      // order: sort ? sort : [],
      limit: req.pagination.limit, 
      offset: req.pagination.offset
    });
  } catch (err) {
    console.log(err);
    return res.status(500).send({ error: 'Internal server error' });
  }

第 1 行:标记 async (r 并表示分支未覆盖

已修复。据我了解这个问题,当 nyc 获得转译代码的覆盖范围时,它无法将其映射回原始源,因此当发生这种情况时,nyc 会降低覆盖范围。插件 babel-plugin-istanbul 解决了这个问题。它支持 ES2015+ 代码,因此可以使用 babel 向后兼容。我遵循了这个简单的 tutorial.