2022-07-23 23:45:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'top nav tooltips', :js do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
visit explore_projects_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'clicking new dropdown hides tooltip', :aggregate_failures do
|
|
|
|
btn = '#js-onboarding-new-project-link'
|
|
|
|
|
|
|
|
page.find(btn).hover
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
expect(page).to have_content('Create new...')
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
page.find(btn).click
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
expect(page).not_to have_content('Create new...')
|
2022-07-23 23:45:48 +05:30
|
|
|
end
|
|
|
|
end
|