Replace static fixture for project_title_spec.js (!9175)
This commit is contained in:
parent
8a1441fb02
commit
6f1d8201d0
3 changed files with 12 additions and 31 deletions
4
changelogs/unreleased/dynamic-project-title-fixture.yml
Normal file
4
changelogs/unreleased/dynamic-project-title-fixture.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Replace static fixture for project_title_spec.js
|
||||
merge_request: 9175
|
||||
author: winniehell
|
|
@ -1,20 +0,0 @@
|
|||
.header-content
|
||||
%h1.title
|
||||
%a
|
||||
GitLab Org
|
||||
%a.project-item-select-holder{href: "/gitlab-org/gitlab-test"}
|
||||
GitLab Test
|
||||
%i.fa.chevron-down.dropdown-toggle-caret.js-projects-dropdown-toggle{ "data-toggle" => "dropdown", "data-target" => ".header-content", "data-order-by" => "last_activity_at" }
|
||||
.js-dropdown-menu-projects
|
||||
.dropdown-menu.dropdown-select.dropdown-menu-projects
|
||||
.dropdown-title
|
||||
%span Go to a project
|
||||
%button.dropdown-title-button.dropdown-menu-close{"aria-label" => "Close", type: "button"}
|
||||
%i.fa.fa-times.dropdown-menu-close-icon
|
||||
.dropdown-input
|
||||
%input.dropdown-input-field{id: "", placeholder: "Search your projects", type: "search", value: ""}
|
||||
%i.fa.fa-search.dropdown-input-search
|
||||
%i.fa.fa-times.dropdown-input-clear.js-dropdown-input-clear{role: "button"}
|
||||
.dropdown-content
|
||||
.dropdown-loading
|
||||
%i.fa.fa-spinner.fa-spin
|
|
@ -10,11 +10,11 @@ require('~/project');
|
|||
|
||||
(function() {
|
||||
describe('Project Title', function() {
|
||||
preloadFixtures('static/project_title.html.raw');
|
||||
preloadFixtures('issues/open-issue.html.raw');
|
||||
loadJSONFixtures('projects.json');
|
||||
|
||||
beforeEach(function() {
|
||||
loadFixtures('static/project_title.html.raw');
|
||||
loadFixtures('issues/open-issue.html.raw');
|
||||
|
||||
window.gon = {};
|
||||
window.gon.api_version = 'v3';
|
||||
|
@ -38,15 +38,12 @@ require('~/project');
|
|||
return spyOn(jQuery, 'ajax').and.callFake(fakeAjaxResponse.bind(_this));
|
||||
};
|
||||
})(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);
|
||||
it('toggles dropdown', function() {
|
||||
var menu = $('.js-dropdown-menu-projects');
|
||||
$('.js-projects-dropdown-toggle').click();
|
||||
expect(menu).toHaveClass('open');
|
||||
menu.find('.dropdown-menu-close-icon').click();
|
||||
expect(menu).not.toHaveClass('open');
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue