60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
|
|
/*= require bootstrap */
|
|
|
|
|
|
/*= require select2 */
|
|
|
|
|
|
/*= require lib/utils/type_utility */
|
|
|
|
|
|
/*= require gl_dropdown */
|
|
|
|
|
|
/*= require api */
|
|
|
|
|
|
/*= require project_select */
|
|
|
|
|
|
/*= require project */
|
|
|
|
(function() {
|
|
window.gon || (window.gon = {});
|
|
|
|
window.gon.api_version = 'v3';
|
|
|
|
describe('Project Title', function() {
|
|
fixture.preload('project_title.html');
|
|
fixture.preload('projects.json');
|
|
beforeEach(function() {
|
|
fixture.load('project_title.html');
|
|
return this.project = new Project();
|
|
});
|
|
return describe('project list', function() {
|
|
beforeEach((function(_this) {
|
|
return function() {
|
|
_this.projects_data = fixture.load('projects.json')[0];
|
|
return spyOn(jQuery, 'ajax').and.callFake(function(req) {
|
|
var d;
|
|
expect(req.url).toBe('/api/v3/projects.json?simple=true');
|
|
d = $.Deferred();
|
|
d.resolve(_this.projects_data);
|
|
return d.promise();
|
|
});
|
|
};
|
|
})(this));
|
|
it('to show on toggle click', (function(_this) {
|
|
return function() {
|
|
$('.js-projects-dropdown-toggle').click();
|
|
return expect($('.header-content').hasClass('open')).toBe(true);
|
|
};
|
|
})(this));
|
|
return it('hide dropdown', function() {
|
|
$(".dropdown-menu-close-icon").click();
|
|
return expect($('.header-content').hasClass('open')).toBe(false);
|
|
});
|
|
});
|
|
});
|
|
|
|
}).call(this);
|