Fix test selection in Test::Integration::Mattermost
Ince3b81b953
we changed Test::Integration::Mattermost#perform to consume a required positional parameter and pass on the rest of the arguments to the superclass. There was an error in implementation here and instead of splatting the files array to produce no additional arguments, we passed in the default case an empty array. This had the effect of calling rspec with no test files, rather than expected default of 'qa/specs/features` Here we correct that bug, and re-add the :core suite, as that was a poor deuction in the investagtion for74d6b8a211
.
This commit is contained in:
parent
92249f1ac8
commit
e1f037980f
1 changed files with 2 additions and 2 deletions
|
@ -7,11 +7,11 @@ module QA
|
|||
# including staging and on-premises installation.
|
||||
#
|
||||
class Mattermost < Scenario::Entrypoint
|
||||
tags :mattermost
|
||||
tags :core, :mattermost
|
||||
|
||||
def perform(address, mattermost, *files)
|
||||
Runtime::Scenario.mattermost = mattermost
|
||||
super(address, files)
|
||||
super(address, *files)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue