summaryrefslogtreecommitdiff
path: root/spec/features/instance_statistics/cohorts_spec.rb
blob: 40e65515ceb3d15f47d4afe90eb981af46a443e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rails_helper'

describe 'Cohorts page' do
  before do
    sign_in(create(:admin))

    stub_application_setting(usage_ping_enabled: true)
  end

  it 'See users count per month' do
    2.times { create(:user) }

    visit instance_statistics_cohorts_path

    expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
  end
end