如何从 mocha/nyc 测试覆盖率 (Node.js) 中过滤掉某些模式?

How to filter out certain patterns from mocha/nyc test coverage (Node.js)?

在 mocha.opts 中,我确定如何设置需要考虑的覆盖模式,但不确定如何包含必须过滤掉的模式?

例如,

我有包含覆盖模式的文件 mocha.opts,它作为参数传递给以下命令:
nyc mocha --opts ./mocha.opts

mocha.opts内容如下:
test/tests/routes/*.test.js

但是有很多 custom js scripts 导入到 *.test.js 文件中。但是这些 custom js scripts 包含我不想在覆盖率报告中涵盖的功能,也不想为它们编写单元测试。
有没有办法通过在 mocha.opts 文件中声明这些模式来从覆盖范围中过滤掉它们?

在package.json中可以添加nyc配置。像这样的东西。 https://www.npmjs.com/package/nyc#excluding-files

"nyc": {
  "include": [
    "./**/*.js"
  ],
  "exclude": [
    "./test/",
    "./db/migrations/"
  ]
}

虽然我还没有看到在 mocha.opts 中指定的方法。