[Edit] Update failing specs

Update failing specs in Edit mode with changes made for revision
checking, WTD-1033.
This commit is contained in:
Victor Woeltjen
2015-03-24 16:31:14 -07:00
parent 5867f8ad98
commit 35371f89ab
3 changed files with 12 additions and 18 deletions

View File

@@ -7,6 +7,7 @@ define(
describe("The Edit mode controller", function () {
var mockScope,
mockQ,
mockNavigationService,
mockObject,
mockCapability,
@@ -17,6 +18,7 @@ define(
"$scope",
[ "$on" ]
);
mockQ = jasmine.createSpyObj('$q', ['when', 'all']);
mockNavigationService = jasmine.createSpyObj(
"navigationService",
[ "getNavigation", "addListener", "removeListener" ]
@@ -37,6 +39,7 @@ define(
controller = new EditController(
mockScope,
mockQ,
mockNavigationService
);
});