Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/filtered_search/droplab/drop_down_spec.js')
-rw-r--r--spec/frontend/filtered_search/droplab/drop_down_spec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/frontend/filtered_search/droplab/drop_down_spec.js b/spec/frontend/filtered_search/droplab/drop_down_spec.js
index f49dbfcf79c..6fbb4394944 100644
--- a/spec/frontend/filtered_search/droplab/drop_down_spec.js
+++ b/spec/frontend/filtered_search/droplab/drop_down_spec.js
@@ -557,11 +557,11 @@ describe('DropLab DropDown', () => {
DropDown.prototype.show.call(testContext.dropdown);
});
- it('it should set .list display to block', () => {
+ it('should set .list display to block', () => {
expect(testContext.list.style.display).toBe('block');
});
- it('it should set .hidden to false', () => {
+ it('should set .hidden to false', () => {
expect(testContext.dropdown.hidden).toBe(false);
});
@@ -591,11 +591,11 @@ describe('DropLab DropDown', () => {
DropDown.prototype.hide.call(testContext.dropdown);
});
- it('it should set .list display to none', () => {
+ it('should set .list display to none', () => {
expect(testContext.list.style.display).toBe('none');
});
- it('it should set .hidden to true', () => {
+ it('should set .hidden to true', () => {
expect(testContext.dropdown.hidden).toBe(true);
});
});
@@ -648,11 +648,11 @@ describe('DropLab DropDown', () => {
DropDown.prototype.destroy.call(testContext.dropdown);
});
- it('it should call .hide', () => {
+ it('should call .hide', () => {
expect(testContext.dropdown.hide).toHaveBeenCalled();
});
- it('it should call .removeEventListener', () => {
+ it('should call .removeEventListener', () => {
expect(testContext.list.removeEventListener).toHaveBeenCalledWith(
'click',
testContext.eventWrapper.clickEvent,