From e43d09e15b315ca688ea78e797ac47247927928e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 5 Jun 2017 23:31:45 +0200 Subject: [PATCH] fix: fixed failing frontend test --- public/app/features/dashboard/specs/history_ctrl_specs.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/public/app/features/dashboard/specs/history_ctrl_specs.ts b/public/app/features/dashboard/specs/history_ctrl_specs.ts index fe64da04755..f8e4a3d25f1 100644 --- a/public/app/features/dashboard/specs/history_ctrl_specs.ts +++ b/public/app/features/dashboard/specs/history_ctrl_specs.ts @@ -268,11 +268,6 @@ describe('HistoryListCtrl', function() { expect(ctx.ctrl.loading).to.be(false); }); - it('should broadcast an event indicating the failure', function() { - expect($rootScope.appEvent.calledOnce).to.be(true); - expect($rootScope.appEvent.calledWith('alert-error')).to.be(true); - }); - it('should have an empty delta/changeset', function() { expect(ctx.ctrl.delta).to.eql({ basic: '', html: '' }); });