Конфигурация jest в приложенииact, которое извлекается из приложения create activ - PullRequest
0 голосов
/ 10 июля 2019

Невозможно запустить тест после извлечения из приложения create response.

Step1: Ejected Создать приложение реакции

Шаг 2: В package.json мы используем webpack 3.6 и реагируем: 16.8.6

Шаг 3: npm jest, npm энзим, npm энзим-адаптер-реакция-16, npm энзим-реакция-intl и сценарий внутри: {test: jest},

step4: тест npm

"скрипты": { "тест": "шутка" }, "зависимости": { "шутка": "^ 24.8.0", «энзим»: «^ 3.10.0», «энзим-адаптер-реакция-16»: «^ 1.14.0», «энзим-реакция-интл»: «^ 2.0.4», }

Ожидаемый компонент React с intl должен быть пройден Факт: Тесты / компоненты / MapControls / SearchLocation.test.js ● Не удалось запустить набор тестов

Jest encountered an unexpected token

This usually means that you are trying to import a file which Jest cannot parse, e.g. it's not plain JavaScript.

By default, if Jest sees a Babel config, it will use that to transform your files, ignoring "node_modules".

Here's what you can do:
 • To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
 • If you need a custom transformation specify a "transform" option in your config.
 • If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.

You'll find more details and examples of these config options in the docs:
https://jestjs.io/docs/en/configuration.html

Details:

SyntaxError: C:\Users\admin\Documents\UGVCS-Project\New FE checkout\frontend\app\_tests_\components\MapControls\SearchLocation.test.js: Unexpected token (12:37)

  10 |
  11 | test('submit co-ordinates and test null check', () =>{
> 12 |   const searchComp = shallowWithIntl(<SearchLocation  />);
     |                                      ^
...