I'm new to jasmine and using angularjs as a framework.
How can i test that a $(window).trigger "haveBeenCalledWith":
Code to test (it's a function in an angularjs service):
start: function (serverUrl, callbackFunc) {
// initialize communication manager and when ready start the worklist server
commManager.initAsync(serverUrl, function (isConnected) {
if (isConnected) {
var msgHeader = new protocolMessageHeader(userSessionGuid, messageCommandName.START_WL_SESSION + "_RQ");
var dataSet = { $type: 10, UserSessionGuid: userSessionGuid, WLSessionGuid: wlSessionGuid };
commManager.sendMessage(new protocolMessage(msgHeader, dataSet), function (data) {
if (callbackFunc) {
callbackFunc(data);
}
});
} else {
**$(window).trigger(events.onShowModalDialog, {
title: "Worklist Server Error",
body: "Can not establish connection to Worklist server",
type: generalStatusEnum.ERROR
});**
}
});
}
I made isConnected to be false and i want to test that $(window).trigger was called with the above parameters