Module: Datadog::CI::Contrib::Cucumber::Step::InstanceMethods

Defined in:
lib/datadog/ci/contrib/cucumber/step.rb

Instance Method Summary collapse

Instance Method Details

#execute(*args) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/datadog/ci/contrib/cucumber/step.rb', line 14

def execute(*args)
  test_span = CI.active_test
  if test_span&.skipped_by_itr?
    @action.skip(*args)
  else
    super
  end
end