Skip to content

Instantly share code, notes, and snippets.

View vshabelnyk's full-sized avatar

Viacheslav Shabelnyk vshabelnyk

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