如何抑制柏树无头镀铬原木?

时间:2021-05-18 23:33:31

标签: docker-compose continuous-integration cypress

Cypress 正在通过命令在 docker 内的 CircleCI 中运行: command: npx cypress run --headless --browser chrome

它打印了太多信息以及 Cypress 测试结果:

base_1 | 127.0.0.1 - - [18/May/2021:19:52:18 +0000] "GET /roof.svg HTTP/1.1" 200 547 "http://

我想省略这些请求日志。

1 个答案:

答案 0 :(得分:0)

根据cypress docs将其粘贴到cypress/support/index.js

Cypress.Server.defaults({
  delay: 500,
  force404: false,
  whitelist: (xhr) => {
    // handle custom logic for whitelisting
    return true;
  }
})