Try adding below code, jasmine default time 5 sec. The below code will wait for all test cases to complete it task & working fine for me.
jasmine.getEnv().defaultTimeoutInterval =15000;
onPrepare: function(){
jasmine.getEnv().defaultTimeoutInterval =your time to set in milli second;
}