Commit 41d9e2ef by cahrens

Dependency cleanup.

parent 2eae3681
define([ define([
'jquery',
'backbone', 'backbone',
'underscore', 'underscore',
'common/js/spec_helpers/ajax_helpers', 'common/js/spec_helpers/ajax_helpers',
'common/js/components/views/paginated_view', 'common/js/components/views/paginated_view',
'common/js/components/collections/paging_collection' 'common/js/components/collections/paging_collection'
], function (Backbone, _, AjaxHelpers, PaginatedView, PagingCollection) { ], function ($, Backbone, _, AjaxHelpers, PaginatedView, PagingCollection) {
'use strict'; 'use strict';
describe('PaginatedView', function () { describe('PaginatedView', function () {
var TestItemView = Backbone.View.extend({ var TestItemView = Backbone.View.extend({
......
...@@ -239,7 +239,7 @@ define(['jquery', ...@@ -239,7 +239,7 @@ define(['jquery',
} }
expect(collection.getPage()).toBe(newPage); expect(collection.getPage()).toBe(newPage);
} }
) );
}); });
}); });
}); });
......
define([ define([
'jquery',
'URI', 'URI',
'underscore', 'underscore',
'common/js/spec_helpers/ajax_helpers', 'common/js/spec_helpers/ajax_helpers',
'common/js/components/views/paging_footer', 'common/js/components/views/paging_footer',
'common/js/components/collections/paging_collection' 'common/js/components/collections/paging_collection'
], function (URI, _, AjaxHelpers, PagingFooter, PagingCollection) { ], function ($, URI, _, AjaxHelpers, PagingFooter, PagingCollection) {
'use strict'; 'use strict';
describe("PagingFooter", function () { describe("PagingFooter", function () {
var pagingFooter, var pagingFooter,
......
define([ define([
'underscore',
'common/js/components/views/paging_header', 'common/js/components/views/paging_header',
'common/js/components/collections/paging_collection' 'common/js/components/collections/paging_collection'
], function (PagingHeader, PagingCollection) { ], function (_, PagingHeader, PagingCollection) {
'use strict'; 'use strict';
describe('PagingHeader', function () { describe('PagingHeader', function () {
var pagingHeader, var pagingHeader,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment