We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0557c commit f193c13Copy full SHA for f193c13
src/Shared/BrowserTesting/src/BrowserManager.cs
@@ -48,7 +48,7 @@ async Task InitializeCore()
48
{
49
// Work around weird driverExecutable lookup logic
50
var helixDirectory = Environment.GetEnvironmentVariable("HELIX_WORKITEM_ROOT");
51
- var driverPath = string.isNullOrEmpty(helixDirectory) ? null : Path.Combine(helixDirectory, "runtests.sh");
+ var driverPath = string.IsNullOrEmpty(helixDirectory) ? null : Path.Combine(helixDirectory, "runtests.sh");
52
Playwright = await PlaywrightSharp.Playwright.CreateAsync(_loggerFactory, driverExecutablePath: driverPath /*, debug: "pw:api"*/);
53
foreach (var (browserName, options) in _browserManagerConfiguration.BrowserOptions)
54
0 commit comments