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 13907c6 commit ac09057Copy full SHA for ac09057
roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs
@@ -20,6 +20,14 @@ public async Task GeneratePdf()
20
bool isValidHtml = ReportBase.IsValidHTML(GlobalConst.TestPDFHtmlTemplate);
21
ClassicAssert.IsTrue(isValidHtml);
22
23
+ foreach(System.Collections.DictionaryEntry entry in Environment.GetEnvironmentVariables())
24
+ {
25
+ Log.WriteWarning("Test Log", $"{entry.Key} = {entry.Value}");
26
+ }
27
+
28
+ string? githubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB_ACTIONS");
29
+ Log.WriteInfo("Test Log", $"{nameof(githubActions)} = {githubActions}");
30
31
string? sudoUser = Environment.GetEnvironmentVariable("SUDO_USER");
32
string? runnerUser = Environment.GetEnvironmentVariable("RUNNER_USER");
33
0 commit comments