-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add a breadcrumb when the library starts
- Loading branch information
Showing
4 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Feature: Attaching a series of notable events leading up to errors | ||
A breadcrumb contains supplementary data which will be sent along with | ||
events. Breadcrumbs are intended to be pieces of information which can | ||
lead the developer to the cause of the event being reported. | ||
|
||
Scenario: An app lauches and subsequently sends a manual event using notify() | ||
When I run "HandledErrorScenario" | ||
And I wait for a request | ||
Then the event breadcrumbs contain "Bugsnag loaded" with type "state" | ||
|
||
Scenario: An app lauches and subsequently crahes | ||
When I crash the app using "BuiltinTrapScenario" | ||
And I relaunch the app | ||
And I wait for a request | ||
Then the event breadcrumbs contain "Bugsnag loaded" with type "state" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters