File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
TELBlazor.Components.ShowCase.E2ETests/Helpers Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 3838
3939 # Check Dummy Data
4040 TELBLAZOR_PACKAGE_VERSION : " 0.0.0-ci-checks"
41-
41+ HEADLESS_TESTING : true
4242
4343jobs :
4444
@@ -323,7 +323,8 @@ jobs:
323323 /p:UseTELBlazorComponentsProjectReference=$USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE \
324324 /p:TELBlazorPackageSource=$TELBLAZOR_PACKAGE_SOURCE \
325325 /p:DisablePackageGeneration=$DISABLE_PACKAGE_GENERATION \
326- /p:E2ETracingEnabled=$E2E_TRACING_ENABLED
326+ /p:E2ETracingEnabled=$E2E_TRACING_ENABLED \
327+ /p:HeadlessTesting=$HEADLESS_TESTING
327328
328329 - name : Build solution without generating new package
329330 env :
@@ -336,7 +337,8 @@ jobs:
336337 /p:UseTELBlazorComponentsProjectReference=$USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE \
337338 /p:TELBlazorPackageSource=$TELBLAZOR_PACKAGE_SOURCE \
338339 /p:DisablePackageGeneration=$DISABLE_PACKAGE_GENERATION \
339- /p:E2ETracingEnabled=$E2E_TRACING_ENABLED
340+ /p:E2ETracingEnabled=$E2E_TRACING_ENABLED \
341+ /p:HeadlessTesting=$HEADLESS_TESTING
340342
341343
342344 - name : Ensure browsers are installed
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public static async Task<IBrowserContext> CreateBrowserContextAsync(IPlaywright
1414 {
1515
1616 IBrowser browser ;
17- bool headless = ( bool . TryParse ( Environment . GetEnvironmentVariable ( "HeadlessTesting" ) , out var result ) && result ) ; ;
17+ bool headless = ( bool . TryParse ( Environment . GetEnvironmentVariable ( "HeadlessTesting" ) , out var result ) && result ) ;
1818 switch ( browserType . ToLower ( ) )
1919 {
2020 case "chromium" :
You can’t perform that action at this time.
0 commit comments