Reputation: 1143
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
Reputation: 472
My sugestion would be to use Jasmine tests.
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