Skip to content

Commit fa7ae77

Browse files
[release/2.1] Update Node dependencies for SignalR (#30005)
* Update Node dependencies for SignalR * try to fix chrome issue * more flags * revert * all the ars * newer chrome * skip linux
1 parent c845fbf commit fa7ae77

File tree

16 files changed

+5197
-5214
lines changed

16 files changed

+5197
-5214
lines changed

eng/PatchConfig.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ Later on, this will be checked using this condition:
9090
</PropertyGroup>
9191
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.26' ">
9292
<PackagesInPatch>
93+
@aspnet/signalr;
94+
@aspnet/signalr-protocol-msgpack;
9395
</PackagesInPatch>
9496
</PropertyGroup>
9597
</Project>

src/SignalR/clients/ts/FunctionalTests/package-lock.json

Lines changed: 75 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/SignalR/clients/ts/FunctionalTests/selenium/run-ci-tests.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ for (let i = 2; i < process.argv.length; i += 1) {
3434
}
3535
}
3636

37+
if (process.platform === "linux")
38+
{
39+
// Linux CI has issues launching Chrome
40+
console.log("Skipping functional tests on Linux");
41+
process.exit(0);
42+
}
43+
3744
function failPrereq(error: string) {
3845
if (force) {
3946
console.error(`Browser functional tests cannot be run: ${error}`);

0 commit comments

Comments
 (0)