summaryrefslogtreecommitdiffstats
path: root/utils/test/reporting/pages/test/spec/controllers/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/test/reporting/pages/test/spec/controllers/main.js')
-rw-r--r--utils/test/reporting/pages/test/spec/controllers/main.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/utils/test/reporting/pages/test/spec/controllers/main.js b/utils/test/reporting/pages/test/spec/controllers/main.js
deleted file mode 100644
index b92366db6..000000000
--- a/utils/test/reporting/pages/test/spec/controllers/main.js
+++ /dev/null
@@ -1,23 +0,0 @@
-'use strict';
-
-describe('Controller: MainCtrl', function () {
-
- // load the controller's module
- beforeEach(module('opnfvApp'));
-
- var MainCtrl,
- scope;
-
- // Initialize the controller and a mock scope
- beforeEach(inject(function ($controller, $rootScope) {
- scope = $rootScope.$new();
- MainCtrl = $controller('MainCtrl', {
- $scope: scope
- // place here mocked dependencies
- });
- }));
-
- it('should attach a list of awesomeThings to the scope', function () {
- expect(MainCtrl.awesomeThings.length).toBe(3);
- });
-});