I am new to unit testing as well as in angularjs.
When I unit test my modal if they are showing or not, an error was returned:
> TypeError: undefined is not a constructor (evaluating
> '$('#modalId').modal('show')')
How can I unit test my modals ?
It depends on what testing framework you are using. In case of
jasmine
you can spy on modal. Lets say you have this controller:Then the test looks like this:
You need to return a
mock
of what$modal.open
normally returns, not a mock of$modal
, which doesn’t include anopen
function is laid out infakeModal
mock. The fake modal must have aresult
object that contains a then function to store the callbacks (to be called when the OK or Cancel buttons are clicked on). It also needs aclose
function (simulating an OK button click on the modal) and adismiss
function (simulating a Cancel button click on the modal). The close and dismiss functions call the necessary call back functions when called.