summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/group_spec.rb
blob: bc6f449edc5c4fcae0908b511e953b0a84244855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Dashboard Group' do
  before do
    sign_in(create(:user))
  end

  it 'defaults sort dropdown to last created' do
    visit dashboard_groups_path

    expect(page).to have_button('Last created')
  end

  it 'creates new group', :js do
    visit dashboard_groups_path
    find('[data-testid="new-group-button"]').click
    new_name = 'Samurai'

    fill_in 'group_name', with: new_name
    click_button 'Create group'

    expect(current_path).to eq group_path(Group.find_by(name: new_name))
    expect(page).to have_content(new_name)
  end
end