Mayur
Mayur

Reputation: 1143

how to test angular js in eclipse for maven project?

In my project there is RESTful web services and I am using angularjs for front-end. But I am not able to figure out how to test angularjs in eclipse environment.

Is there any way to achieve it?

I have already install karma.

Upvotes: 0

Views: 348

Answers (1)

JoSeTe4ever
JoSeTe4ever

Reputation: 472

My sugestion would be to use Jasmine tests.

http://jasmine.github.io/

As you already installed karma, you can automize a grunt taskt "test", for instance, to write all the tests.

This approach is independent from eclipse, you can use it with a terminal.

Upvotes: 1

Related Questions