-
-
Notifications
You must be signed in to change notification settings - Fork 337
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd1cbd0
commit b21339e
Showing
1 changed file
with
6 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//swiftlint:disable todo | ||
//swiftlint:disable type_body_length | ||
|
||
import XCTest | ||
|
||
|
@@ -98,7 +98,10 @@ class UserFeedbackUITests: BaseUITest { | |
} | ||
|
||
func testPrefilledUserInformation() throws { | ||
launchApp(args: ["--io.sentry.feedback.use-sentry-user"], env: [ | ||
launchApp(args: [ | ||
"--io.sentry.feedback.use-sentry-user", | ||
"--io.sentry.feedback.all-defaults" | ||
], env: [ | ||
"--io.sentry.user.name": "ui test user", | ||
"--io.sentry.user.email": "[email protected]" | ||
]) | ||
|
@@ -386,4 +389,4 @@ class UserFeedbackUITests: BaseUITest { | |
} | ||
} | ||
|
||
//swiftlint:enable todo | ||
//swiftlint:enable type_body_length |