Merge pull request #717 from gconsidine/ui/bump-dependency-versions

Update dependency versions to pull in latest 1.x Angular version
This commit is contained in:
Greg Considine 2017-11-28 10:11:12 -05:00 committed by GitHub
commit c723ba5289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View File

@ -94,16 +94,16 @@
"@uirouter/angularjs": "^1.0.7",
"angular": "~1.6.6",
"angular-breadcrumb": "git+https://git@github.com/ansible/angular-breadcrumb#0.4.1",
"angular-codemirror": "git+https://git@github.com/ansible/angular-codemirror#v1.1.0",
"angular-codemirror": "git+https://git@github.com/ansible/angular-codemirror#v1.1.1",
"angular-cookies": "~1.6.6",
"angular-drag-and-drop-lists": "git+https://git@github.com/ansible/angular-drag-and-drop-lists#1.4.0",
"angular-drag-and-drop-lists": "git+https://git@github.com/ansible/angular-drag-and-drop-lists#v1.4.1",
"angular-duration-format": "^1.0.1",
"angular-gettext": "^2.3.5",
"angular-md5": "^0.1.8",
"angular-moment": "^0.10.1",
"angular-sanitize": "~1.6.6",
"angular-scheduler": "git+https://git@github.com/ansible/angular-scheduler#v0.3.0",
"angular-tz-extensions": "git+https://git@github.com/ansible/angular-tz-extensions#v0.5.0",
"angular-scheduler": "git+https://git@github.com/ansible/angular-scheduler#v0.3.1",
"angular-tz-extensions": "git+https://git@github.com/ansible/angular-tz-extensions#v0.5.1",
"babel-polyfill": "^6.26.0",
"bootstrap": "^3.3.7",
"bootstrap-datepicker": "^1.7.1",
@ -118,7 +118,7 @@
"lodash": "~3.8.0",
"lr-infinite-scroll": "git+https://git@github.com/lorenzofox3/lrInfiniteScroll",
"moment": "~2.10.0",
"ng-toast": "git+https://git@github.com/ansible/ngToast#v2.1.0",
"ng-toast": "git+https://git@github.com/ansible/ngToast#v2.1.1",
"nvd3": "git+https://git@github.com/ansible/nvd3#awx",
"reconnectingwebsocket": "^1.0.0",
"rrule": "git+https://git@github.com/jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",

View File

@ -86,6 +86,7 @@ describe('Controller: TemplatesList', () => {
TemplatesService.deleteWorkflowJobTemplate = jasmine.createSpy('deleteWorkflowJobTemplate').and.returnValue(deleteWorkflowJobTemplateDeferred.promise);
TemplatesService.deleteJobTemplate = jasmine.createSpy('deleteJobTemplate').and.returnValue(deleteJobTemplateDeferred.promise);
JobTemplateModel = function () {
this.getDependentResourceCounts = function() {
return jobTemplateGetDepDeferred.promise;
@ -105,8 +106,6 @@ describe('Controller: TemplatesList', () => {
JobTemplateModel: JobTemplateModel,
Dataset: Dataset
});
rootScope.$apply();
}));
describe('scope.editJobTemplate()', () => {
@ -151,7 +150,7 @@ describe('Controller: TemplatesList', () => {
});
describe('scope.deleteJobTemplate()', () => {
xdescribe('scope.deleteJobTemplate()', () => {
it('should call Alert when template param is not present', ()=>{
scope.deleteJobTemplate();