Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
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
4 changes: 4 additions & 0 deletions .azure/pipelines/components-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ jobs:
condition: always()

artifacts:
- name: Components_E2E_Logs
path: artifacts/log/
publishOnError: true
includeForks: true
Comment on lines +77 to +80
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💟

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😆 The tests don't actually produce any logs, at least not through the normal channels our other tests do. Something the blazor team should probably remedy.

- name: Components_E2E_Test_Logs
path: '$(Build.SourcesDirectory)/artifacts/TestResults/$(BuildConfiguration)'
includeForks: true
Expand Down
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@
<MicrosoftPlaywrightVersion>1.17.3</MicrosoftPlaywrightVersion>
<PollyExtensionsHttpVersion>3.0.0</PollyExtensionsHttpVersion>
<PollyVersion>7.2.3</PollyVersion>
<SeleniumSupportVersion>4.3.0</SeleniumSupportVersion>
<SeleniumWebDriverChromeDriverVersion>103.0.5060.13400</SeleniumWebDriverChromeDriverVersion>
<SeleniumWebDriverVersion>4.3.0</SeleniumWebDriverVersion>
<SeleniumSupportVersion>4.5.1</SeleniumSupportVersion>
<SeleniumWebDriverChromeDriverVersion>107.0.5304.6200</SeleniumWebDriverChromeDriverVersion>
<SeleniumWebDriverVersion>4.5.1</SeleniumWebDriverVersion>
<SerilogExtensionsLoggingVersion>1.4.0</SerilogExtensionsLoggingVersion>
<SerilogSinksFileVersion>4.0.0</SerilogSinksFileVersion>
<StackExchangeRedisVersion>2.2.4</StackExchangeRedisVersion>
Expand Down
2,802 changes: 1,400 additions & 1,402 deletions src/Components/CustomElements/src/js/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Components/Web.JS/dist/Release/blazor.server.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Components/Web.JS/dist/Release/blazor.webview.js

Large diffs are not rendered by default.

2,456 changes: 1,233 additions & 1,223 deletions src/Components/Web.JS/yarn.lock

Large diffs are not rendered by default.

3,031 changes: 1,478 additions & 1,553 deletions src/Components/WebAssembly/Authentication.Msal/src/Interop/yarn.lock

Large diffs are not rendered by default.

3,041 changes: 1,483 additions & 1,558 deletions src/Components/WebAssembly/WebAssembly.Authentication/src/Interop/yarn.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal sealed class Selenium

private static async ValueTask<Uri> WaitForServerAsync(int port, CancellationToken cancellationToken)
{
var uri = new UriBuilder("http", "localhost", port, "/wd/hub/").Uri;
var uri = new UriBuilder("http", "localhost", port).Uri;
var httpClient = new HttpClient
{
BaseAddress = uri,
Expand Down
2 changes: 1 addition & 1 deletion src/Components/benchmarkapps/Wasm.Performance/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN .dotnet/dotnet publish -c Release --no-restore -o /app ./src/Components/benc
RUN chmod +x /app/Wasm.Performance.Driver

WORKDIR /app
FROM selenium/standalone-chrome:103.0 as final
FROM selenium/standalone-chrome:106.0 as final
COPY --from=build ./app ./
COPY ./exec.sh ./

Expand Down
2 changes: 1 addition & 1 deletion src/Components/test/E2ETest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"dependencies": {
"sauce-connect-launcher": "^1.3.1",
"selenium-standalone": "^7.1.0"
"selenium-standalone": "8.2.3"
},
"devDependencies": {
"@types/node": "^13.1.7",
Expand Down
Loading