-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
C#: Traced-mode integration tests for Blazor #18440
C#: Traced-mode integration tests for Blazor #18440
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 35 out of 50 changed files in this pull request and generated 1 comment.
Files not reviewed (15)
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/BlazorTest.csproj: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/Layout/MainLayout.razor.css: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/Layout/NavMenu.razor.css: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Properties/launchSettings.json: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/appsettings.json: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/global.json: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/wwwroot/app.css: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/Files.expected: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/Files.ql: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/htmlSinks.expected: Language not supported
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/App.razor: Evaluated as low risk
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/Layout/MainLayout.razor: Evaluated as low risk
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/Layout/NavMenu.razor: Evaluated as low risk
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/MyInput.razor: Evaluated as low risk
- csharp/ql/integration-tests/all-platforms/blazor/BlazorTest/Components/MyOutput.razor: Evaluated as low risk
Tip: Copilot code review supports C#, Go, Java, JavaScript, Markdown, Python, Ruby and TypeScript, with more languages coming soon. Learn more
public string? Value { get; set; } = ""; | ||
} | ||
|
||
private const string XssUrl = "<b>aaaa<%2Fb>"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The value of the XssUrl constant contains an invalid HTML tag (<%2Fb>
). It should be corrected to <b>aaaa</b>
.
private const string XssUrl = "<b>aaaa<%2Fb>"; | |
private const string XssUrl = "<b>aaaa</b>"; |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
Copy of #18325 except with the
build-mode: none
test removed.If #18325 still has issues with
build-mode: none
, then this can be merged and unblock adding the integration tests.