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 c8e9fb5 commit b1dc70dCopy full SHA for b1dc70d
integration-test/runtime.Tests.ps1
@@ -132,7 +132,9 @@ internal class FakeTransport : ITransport
132
133
It "'dotnet publish' produces an app that's recognized as AOT by Sentry (SentryNative=<_>)" -ForEach @($false, $true) {
134
publishConsoleApp $_
135
- runConsoleApp | Should -AnyElementMatch 'This looks like a Native AOT application build.'
+ $output = runConsoleApp
136
+ $output | Should -AnyElementMatch 'This looks like a Native AOT application build.'
137
+ $output | Should -Not -AnyElementMatch 'System.DllNotFoundException: Unable to load shared library ''sentry-native'' or one of its dependencies.'
138
}
139
140
It "'dotnet run' produces an app that's recognized as JIT by Sentry" {
0 commit comments