Add QA sanity selectors scenario entrypoint
This commit is contained in:
parent
ee12ce8516
commit
32424e461b
4
qa/qa.rb
4
qa/qa.rb
|
|
@ -56,6 +56,10 @@ module QA
|
|||
module Integration
|
||||
autoload :Mattermost, 'qa/scenario/test/integration/mattermost'
|
||||
end
|
||||
|
||||
module Sanity
|
||||
autoload :Selectors, 'qa/scenario/test/sanity/selectors'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,14 @@
|
|||
module QA
|
||||
module Scenario
|
||||
module Test
|
||||
module Sanity
|
||||
class Selectors < Scenario::Template
|
||||
include Scenario::Bootable
|
||||
|
||||
def perform(*)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Reference in New Issue