summaryrefslogtreecommitdiff
path: root/spec/support/helpers/board_helpers.rb
blob: 6e145fed7331d2f3d5b5f17bb40598a589149916 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module BoardHelpers
  def click_card(card)
    within card do
      first('.board-card-number').click
    end
  end
end