Fix Jasmine unit tests failing

The Jasmine tests at localhost:port/jasmine are failing.
This is due to the rename of the metadata widget file.
This patch updates the Jasmine tests to use the new file.

The file listings are also alphabetized now.

Change-Id: I36b430211e4ac00ceeec2e01512f32b83cec98ab
Closes-Bug: 1427761
This commit is contained in:
Kelly Domico 2015-03-03 08:33:33 -08:00
parent e26232633d
commit 2382c2df2d
1 changed files with 16 additions and 16 deletions

View File

@ -20,36 +20,36 @@ class ServicesTests(test.JasmineTests):
'horizon/js/angular/horizon.conf.js',
'horizon/js/angular/horizon.js',
'horizon/js/angular/services/horizon.utils.js',
'horizon/js/angular/controllers/metadata-widget-controller.js',
'horizon/js/angular/hz.api.module.js',
'horizon/js/angular/services/hz.api.service.js',
'angular/widget.module.js',
'angular/help-panel/help-panel.js',
'angular/wizard/wizard.js',
'angular/table/table.js',
'angular/modal/modal.js',
'angular/bind-scope/bind-scope.js',
'angular/transfer-table/transfer-table.js',
'angular/charts/charts.js',
'angular/charts/chart-tooltip.js',
'angular/charts/pie-chart.js',
'angular/help-panel/help-panel.js',
'angular/metadata-tree/metadata-tree-service.js',
'angular/modal/modal.js',
'angular/table/table.js',
'angular/transfer-table/transfer-table.js',
'angular/wizard/wizard.js',
]
specs = [
'horizon/tests/jasmine/utilsSpec.js',
'horizon/tests/jasmine/metadataWidgetControllerSpec.js',
'horizon/js/angular/services/hz.api.service.spec.js',
'angular/help-panel/help-panel.spec.js',
'angular/wizard/wizard.spec.js',
'angular/table/table.spec.js',
'angular/modal/simple-modal.spec.js',
'horizon/tests/jasmine/metadataWidgetControllerSpec.js',
'horizon/tests/jasmine/utilsSpec.js',
'angular/bind-scope/bind-scope.spec.js',
'angular/transfer-table/transfer-table.spec.js',
'angular/charts/pie-chart.spec.js',
'angular/help-panel/help-panel.spec.js',
'angular/modal/simple-modal.spec.js',
'angular/table/table.spec.js',
'angular/transfer-table/transfer-table.spec.js',
'angular/wizard/wizard.spec.js',
]
externalTemplates = [
'angular/help-panel/help-panel.html',
'angular/wizard/wizard.html',
'angular/transfer-table/transfer-table.html',
'angular/charts/chart-tooltip.html',
'angular/charts/pie-chart.html',
'angular/help-panel/help-panel.html',
'angular/transfer-table/transfer-table.html',
'angular/wizard/wizard.html',
]