Skip to content

node_modules exposed

Choose a tag to compare

@phillipskevin phillipskevin released this 06 Jun 13:51
· 28 commits to main since this release

In this release, testee will not instrument any files in node_modules for test coverage when using the basic --coverage option.

If you use the --coverage option, the node_modules folder will be ignored automatically to prevent errors.

If using a config, the coverage option is not changed, so you can still cover node_modules if you want to for some reason by doing:

coverage: {
  ignore: []
}

#170