Skip to content

Commit d616e36

Browse files
authored
feat(nunit/mstest): serialise launch options for service (#3045)
1 parent d8b42ff commit d616e36

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/Playwright.MSTest/BrowserService.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
using System;
2626
using System.Collections.Generic;
2727
using System.Globalization;
28+
using System.Text.Json;
29+
using System.Text.Json.Serialization;
2830
using System.Threading.Tasks;
2931
using Microsoft.Playwright.TestAdapter;
3032

@@ -70,7 +72,8 @@ private static async Task<IBrowser> CreateBrowser(IBrowserType browserType)
7072
ExposeNetwork = exposeNetwork,
7173
Headers = new Dictionary<string, string>
7274
{
73-
["Authorization"] = $"Bearer {accessToken}"
75+
["Authorization"] = $"Bearer {accessToken}",
76+
["x-playwright-launch-options"] = JsonSerializer.Serialize(PlaywrightSettingsProvider.LaunchOptions, new JsonSerializerOptions() { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull })
7477
}
7578
};
7679

src/Playwright.NUnit/BrowserService.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
using System;
2626
using System.Collections.Generic;
2727
using System.Globalization;
28+
using System.Text.Json;
29+
using System.Text.Json.Serialization;
2830
using System.Threading.Tasks;
2931
using Microsoft.Playwright.TestAdapter;
3032

@@ -65,7 +67,8 @@ private static async Task<IBrowser> CreateBrowser(IBrowserType browserType)
6567
ExposeNetwork = exposeNetwork,
6668
Headers = new Dictionary<string, string>
6769
{
68-
["Authorization"] = $"Bearer {accessToken}"
70+
["Authorization"] = $"Bearer {accessToken}",
71+
["x-playwright-launch-options"] = JsonSerializer.Serialize(PlaywrightSettingsProvider.LaunchOptions, new JsonSerializerOptions() { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull })
6972
}
7073
};
7174

0 commit comments

Comments
 (0)