I am try ing to set up a test harness for a service, making it take about 1 second to play around with some stuff on the front end.
I am using a q so I can call a .then in the controller, so I figuired I could fake this for now by using set timeout, however I think my syntax is incorrect. Here is what I've tried:
return $q(function(resolve, reject) {
setTimeout(function() {
}, 1000).then(resolve);
});
I just want it to wait a second then resolve. New to this, would appreciate any advice, thanks!
Indeed your syntax is incorrect. The
setTimeout
function doesn't return a promise with a.then()
method - instead, it takes a callback. You'd want to useHowever, if you use Angular, you should just go for the
$timeout
service which does return a promise right away.