summaryrefslogtreecommitdiff
path: root/spec/features/instance_statistics/cohorts_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/instance_statistics/cohorts_spec.rb')
-rw-r--r--spec/features/instance_statistics/cohorts_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/features/instance_statistics/cohorts_spec.rb b/spec/features/instance_statistics/cohorts_spec.rb
deleted file mode 100644
index 1f112e1831c..00000000000
--- a/spec/features/instance_statistics/cohorts_spec.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.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
- create_list(:user, 2)
-
- visit instance_statistics_cohorts_path
-
- expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
- end
-end