The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
5 views

Angular testing using Jasmine

I have a controller that I'm trying to test. I've written the spec and Karma (my test-runner) tells me it passed, however I'm not sure I wrote it correctly. Controller ...
0
votes
0answers
22 views

Trying to test my object's ability to save. It has some dependencies on a parent, though. Which test suite should be responsible?

I have an object of type PlaylistItem. In the 'real application', a PlaylistItem will always be added to a Playlist before saving. However, I am trying to use Jasmine to test my PlaylistItem's save ...