Module: TestElementHelper

Includes:
ActionView::RecordIdentifier
Defined in:
lib/generators/rolemodel/testing/rspec/templates/spec/support/helpers/test_element_helper.rb

Instance Method Summary collapse

Instance Method Details

#data_test(name) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/generators/rolemodel/testing/rspec/templates/spec/support/helpers/test_element_helper.rb', line 4

def data_test(name)
  if name.respond_to?(:id)
    "[data-testid='#{dom_id(name)}']"
  else
    "[data-testid='#{name}']"
  end
end