We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a6a337 commit 3425836Copy full SHA for 3425836
project/cli/cli_commands.gd
@@ -135,8 +135,9 @@ func _add_integration_test_context(p_command: String) -> void:
135
SentrySDK.add_breadcrumb(SentryBreadcrumb.create("Integration test started"))
136
137
var user := SentryUser.new()
138
- user.id = "test-user-123"
139
- user.username = "ps-tester"
+ user.id = "12345"
+ user.username = "TestUser"
140
+ user.email = "[email protected]"
141
SentrySDK.set_user(user)
142
143
SentrySDK.set_tag("test.suite", "integration")
0 commit comments