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 092bc03Copy full SHA for 092bc03
integration_tests/Desktop.Tests.ps1
@@ -94,7 +94,6 @@ BeforeAll {
94
$script:testPlatform = "Local"
95
}
96
97
- # -ApiToken "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"
98
Connect-SentryApi `
99
-ApiToken $authToken `
100
-DSN $testDsn
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