Archived
1
0

Don't load plugins in tests

This can affect the test behavior and results.
This commit is contained in:
Asher
2021-02-09 15:36:05 -06:00
parent e098df0766
commit e4e0ac43b0
2 changed files with 9 additions and 8 deletions

View File

@ -9,7 +9,7 @@ main() {
# information. We must also run it from the root otherwise coverage will not
# include our source files.
cd "$OLDPWD"
./test/node_modules/.bin/jest "$@"
CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@"
}
main "$@"