Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Add test support for Bugsnag remote config [793](https://github.com/bugsnag/maze-runner/pull/793)
- Avoid latest round of deprecated BrowserStack devices and add iOS 26 [794](https://github.com/bugsnag/maze-runner/pull/794)
- Add `name`, `location` and `tags` to interface of `Maze.scenario [795](https://github.com/bugsnag/maze-runner/pull/795)

# v10.2.0 - 2025/09/12

Expand Down
12 changes: 12 additions & 0 deletions lib/maze/api/cucumber/scenario.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ def initialize(scenario)
@fail_override_reason = nil
end

def name
@scenario.name
end

def location
@scenario.location
end

def tags
@scenario.tags
end

def mark_as_failed(reason)
@fail_override = true
@fail_override_reason = reason
Expand Down