Added Jest ignore pattern for /dist folder.

This commit is contained in:
Yossi Kolesnicov 2018-08-13 11:01:08 +03:00
Родитель f1cc7c2c46
Коммит 218d15d904
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -73,7 +73,8 @@
"^.+\\.(js|ts)$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
"/node_modules/",
"/dist/"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest-setup.ts",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",