Skip to content

Instantly share code, notes, and snippets.

@DavidFrahm
Last active August 29, 2015 14:06
Show Gist options
  • Save DavidFrahm/3f82175c7e1dacafd066 to your computer and use it in GitHub Desktop.
Save DavidFrahm/3f82175c7e1dacafd066 to your computer and use it in GitHub Desktop.
Route testing
beforeEach(function() {
this.addMatchers({
toHaveBeenLastCalledWith: function(expected) {
return this.actual.mostRecentCall.args[0] == expected;
},
toHaveFulfilledAllRequests: function() {
var httpBackend = this.actual;
httpBackend.verifyNoOutstandingRequest();
httpBackend.verifyNoOutstandingExpectation();
return true;
}
});
});
// TODO: Add actual route implementation here to help the spec make sense
'use strict';
describe("Routes", function () {
var appModule;
beforeEach(module('ngRoute'));
beforeEach(function () {
appModule = module('TheApp');
});
it("should request the-view.html for The View route", function () {
inject(function($route, $location, $rootScope, $httpBackend) {
$httpBackend.expectGET('/views/the-view.html').respond('VIEW);
// TODO: Uncomment to demo test failure "Unsatisfied requests"
// $httpBackend.expectGET('dummy.html').respond('Edit view');
$location.path('/the-view/');
$rootScope.$digest();
// TODO: Comment to demo test failure "Unflushed requests"
// $httpBackend.flush();
expect($httpBackend).toHaveFulfilledAllRequests();
});
});
it("should set $rootScope.routeTitle to 'The Route Title' when $routeChangeStart event is called", function () {
inject(function($route, $location, $rootScope, $httpBackend) {
$httpBackend.when('GET', '/views/the-view.html').respond('VIEW);
$location.path('/the-view/');
$rootScope.$digest();
$httpBackend.flush();
expect($route.current.title).toEqual("The Route Title");
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment