Commit 02fda22f authored by Luke Bennett's avatar Luke Bennett

add test for convdev index user callout

parent 2cfa4f48
...@@ -5,6 +5,16 @@ describe 'Conversational Development Index' do ...@@ -5,6 +5,16 @@ describe 'Conversational Development Index' do
sign_in(create(:admin)) sign_in(create(:admin))
end end
it 'has dismissable intro callout', :js do
visit instance_statistics_conversational_development_index_index_path
expect(page).to have_content 'Introducing Your Conversational Development Index'
find('.js-close-callout').click
expect(page).not_to have_content 'Introducing Your Conversational Development Index'
end
context 'when usage ping is disabled' do context 'when usage ping is disabled' do
it 'shows empty state' do it 'shows empty state' do
stub_application_setting(usage_ping_enabled: false) stub_application_setting(usage_ping_enabled: false)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment