* Autocorrect duplicated operators (e.g. complete `--tag` as `-tag`). * Don't accept invalid metatag + prefix combinations (e.g. don't complete `char:rating:s` as `rating:safe`).
7 lines
194 B
Ruby
7 lines
194 B
Ruby
require "test_helper"
|
|
|
|
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
|
|
include SystemTestHelper
|
|
driven_by :selenium, using: :headless_firefox, screen_size: [1400, 1400]
|
|
end
|