jrwebdev / ngreact-test-utils

Test utilities for Angular apps using React and ngReact
MIT License
4 stars 0 forks source link

Uncaught TypeError: Cannot read property 'inject' of undefined #5

Open sahilpandya opened 7 years ago

sahilpandya commented 7 years ago

Hello,

I am using these package for writing unit test cases for ngReact component. I am using compile method on react directive but In test cases run time it is showing error. 'Uncaught TypeError: Cannot read property 'inject' of undefined' Please help to figure out these error.

jrwebdev commented 7 years ago

Hi,

Looks like you might not have Angular mocks loaded. Try putting the following at the top of your test file:

require('angular');
require('angular-mocks');