Fixed ui routing conflict with syncNotification

Change-Id: I94e0f91ee35ed90ad73798de5d635abc4addbd4b

Removed backbone deps and views

Change-Id: I77185488ffd5415e4815de59cc44ee24420071db

Started E2E UI Tests with selenium

Test running locally, still broken in container because of phantomjs

Removed backone templates

Change-Id: I788cfda3d12e3d1c2828c9ee9f6eb7e4431eae52
diff --git a/views/ngXosViews/hpc/spec/sample.test.js b/views/ngXosViews/hpc/spec/sample.test.js
index 9949b08..0b08084 100644
--- a/views/ngXosViews/hpc/spec/sample.test.js
+++ b/views/ngXosViews/hpc/spec/sample.test.js
@@ -8,7 +8,8 @@
   beforeEach(module('templates'));
 
   beforeEach(inject(function($httpBackend, $compile, $rootScope){
-
+    httpBackend = $httpBackend;
+    httpBackend.whenGET('/xoslib/hpcview?no_hyperlinks=1').respond(200, []);
     scope = $rootScope.$new();
     element = angular.element('<hpcs-list></hpcs-list>');
     $compile(element)(scope);