Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: #18 RaygunErrorBoundary tests #53

Merged
merged 16 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Raygun.Blazor/Models/BrowserSpecs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Raygun.Blazor.Models
/// This exists because we need to parse some stuff from the browser to construct a proper <see cref="EnvironmentDetails" />
/// instance. Also the <see cref="EnvironmentDetails" /> is a hot mess of JavaScript serialization inconsistency.
/// </remarks>
public record BrowserSpecs
internal record BrowserSpecs
{
#region Private Members

Expand Down
2 changes: 1 addition & 1 deletion src/Raygun.Blazor/Models/BrowserStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/// This exists because we need to parse some stuff from the browser to construct a proper <see cref="EnvironmentDetails" />
/// instance. Also the <see cref="EnvironmentDetails" /> has serialization needs for Raygun that don't align with JSInterop.
/// </remarks>
public record BrowserStats
internal record BrowserStats
{

#region Public Properties
Expand Down
2 changes: 1 addition & 1 deletion src/Raygun.Blazor/Models/BrowserUserAgentData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Raygun.Blazor.Models
/// Any value that is derived from the reported data is prefixed with the word "Calculated" to indicate
/// that it is not directly reported by the browser.
/// </remarks>
public record BrowserUserAgentData
internal record BrowserUserAgentData
{

#region Public Properties
Expand Down
6 changes: 6 additions & 0 deletions src/Raygun.Blazor/Raygun.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,11 @@
</AssemblyAttribute>
</ItemGroup>

<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>Raygun.Tests.Blazor.Server, $(StrongNamePublicKey)</_Parameter1>
</AssemblyAttribute>
</ItemGroup>


</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Raygun.Tests.Blazor.Server</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand All @@ -26,7 +27,5 @@
<ItemGroup>
<ProjectReference Include="..\Raygun.Blazor\Raygun.Blazor.csproj" />
<ProjectReference Include="..\Raygun.Blazor.Server\Raygun.Blazor.Server.csproj" />
<ProjectReference Include="..\Raygun.Samples.Blazor.Server\Raygun.Samples.Blazor.Server.csproj" />
</ItemGroup>

</Project>
Loading