decko-commons/decko

View on GitHub
decko/features/step_definitions/web_steps.rb

Summary

Maintainability
A
0 mins
Test Coverage

Re-enable Lint/AmbiguousRegexpLiteral cop with # rubocop:enable after disabling it.
Open

# rubocop:disable Lint/AmbiguousRegexpLiteral

Remove debugger entry point save_and_open_page.
Open

  save_and_open_page

This cop checks for calls to debugger or pry.

Example:

# bad (ok during development)

# using pry
def some_method
  binding.pry
  do_something
end

Example:

# bad (ok during development)

# using byebug
def some_method
  byebug
  do_something
end

Example:

# good

def some_method
  do_something
end

There are no issues that match your filters.

Category
Status