31 lines
658 B
Ruby
31 lines
658 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'Cohorts page' do
|
|
before do
|
|
sign_in(create(:admin))
|
|
end
|
|
|
|
context 'with usage ping enabled' do
|
|
it 'shows users count per month' do
|
|
stub_application_setting(usage_ping_enabled: true)
|
|
|
|
create_list(:user, 2)
|
|
|
|
visit admin_cohorts_path
|
|
|
|
expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
|
|
end
|
|
end
|
|
|
|
context 'with usage ping disabled' do
|
|
it 'shows empty state', :js do
|
|
stub_application_setting(usage_ping_enabled: false)
|
|
|
|
visit admin_cohorts_path
|
|
|
|
expect(page).to have_selector(".js-empty-state")
|
|
end
|
|
end
|
|
end
|