From 0ca9e9b7230cb262a04b524aee8ffe99dbe63060 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 22 Apr 2021 20:47:30 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-11-stable-ee --- .../projects/members/groups_with_access_list_spec.rb | 2 +- spec/frontend/whats_new/utils/notification_spec.js | 13 ------------- 2 files changed, 1 insertion(+), 14 deletions(-) (limited to 'spec') diff --git a/spec/features/projects/members/groups_with_access_list_spec.rb b/spec/features/projects/members/groups_with_access_list_spec.rb index 6a1d26983b5..84a972b3027 100644 --- a/spec/features/projects/members/groups_with_access_list_spec.rb +++ b/spec/features/projects/members/groups_with_access_list_spec.rb @@ -78,7 +78,7 @@ RSpec.describe 'Projects > Members > Groups with access list', :js do context 'search in existing members' do it 'finds no results' do - fill_in_filtered_search 'Search groups', with: 'testing 123' + fill_in_filtered_search 'Search groups', with: 'non_existing_group_name' click_groups_tab diff --git a/spec/frontend/whats_new/utils/notification_spec.js b/spec/frontend/whats_new/utils/notification_spec.js index e1de65df30f..c361f934e59 100644 --- a/spec/frontend/whats_new/utils/notification_spec.js +++ b/spec/frontend/whats_new/utils/notification_spec.js @@ -33,19 +33,6 @@ describe('~/whats_new/utils/notification', () => { expect(notificationEl.classList).toContain('with-notifications'); }); - it('removes class and count element when legacy storage key is false', () => { - const notificationEl = findNotificationEl(); - notificationEl.classList.add('with-notifications'); - localStorage.setItem('display-whats-new-notification-13.10', 'false'); - - expect(findNotificationCountEl()).toExist(); - - subject(); - - expect(findNotificationCountEl()).not.toExist(); - expect(notificationEl.classList).not.toContain('with-notifications'); - }); - it('removes class and count element when storage key has current digest', () => { const notificationEl = findNotificationEl(); notificationEl.classList.add('with-notifications'); -- cgit v1.2.1