Neha Gupta
Neha Gupta

Reputation: 1067

How to use jest on karma?

I want to use jest framework. So in karma.conf file i have included jest in the framework field. But it is giving error "WARN [reporter]: Can not load "jest", it is not registered!" when i run karma start. I have included the jest package( "jest": "~0.1.39", "jest-cli": "~0.4.1") in the dependencies of package.json file.

Can someone give me some example for using jest in karma?

Upvotes: 11

Views: 8528

Answers (1)

x'ES
x'ES

Reputation: 574

According this issue https://github.com/facebook/jest/issues/139 it is not trivial to run jest in real browser.

Upvotes: 1

Related Questions