a missing spy

This commit is contained in:
cmrd Senya 2016-12-09 21:08:38 +02:00 committed by Steffen van Bergerem
parent 0e28cfadb2
commit a479db1c96
No known key found for this signature in database
GPG key ID: 315C9787D548DC6B

View file

@ -4,6 +4,7 @@ describe("app", function() {
spyOn(app.Router.prototype, "initialize");
spyOn(app, "setupDummyPreloads");
spyOn(app, "setupUser");
spyOn(app, "setupAspects");
spyOn(app, "setupHeader");
spyOn(app, "setupBackboneLinks");
spyOn(app, "setupGlobalViews");
@ -16,6 +17,7 @@ describe("app", function() {
expect(app.Router.prototype.initialize).toHaveBeenCalled();
expect(app.setupDummyPreloads).toHaveBeenCalled();
expect(app.setupUser).toHaveBeenCalled();
expect(app.setupAspects).toHaveBeenCalled();
expect(app.setupHeader).toHaveBeenCalled();
expect(app.setupBackboneLinks).toHaveBeenCalled();
expect(app.setupGlobalViews).toHaveBeenCalled();