Skip to content

Instantly share code, notes, and snippets.

View elfadotonto's full-sized avatar

Fredrik Svensen elfadotonto

View GitHub Profile
//GistID:1c45ca694ad333baeddd
'use strict';
angular.module('stateMock', []);
angular.module('stateMock').service('$state', ['$q', function($q) {
this.expectedTransitions = [];
this.current = {};
this.transitionTo = function(stateName) {
if (this.expectedTransitions.length > 0) {
var expectedState = this.expectedTransitions.shift();