Skip to content

Commit

Permalink
trial https for webapp tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kllysng committed Jan 9, 2025
1 parent 993c4a9 commit e7ebc1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/E2E Tests/WebAppUiTests/TestingWebAppLocally.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace WebAppUiTests;
[CollectionDefinition(nameof(UiTestNoParallelization), DisableParallelization = true)]
public class TestingWebAppLocally : IClassFixture<InstallPlaywrightBrowserFixture>
{
private const string UrlString = "http://localhost:5001/MicrosoftIdentity/Account/signin";
private const string UrlString = "https://localhost:5001/MicrosoftIdentity/Account/signin";
private const string TraceFileClassName = "TestingWebAppLocally";
private const string TraceFileClassNameCiam = "TestingWebAppLocallyCiam";
private readonly ITestOutputHelper _output;
Expand All @@ -47,8 +47,8 @@ public async Task ChallengeUser_MicrosoftIdFlow_LocalApp_ValidEmailPasswordAsync
}

[Theory]
[InlineData("http://MSIDLABCIAM6.ciamlogin.com")] // CIAM authority
[InlineData("http://login.msidlabsciam.com/fe362aec-5d43-45d1-b730-9755e60dc3b9/v2.0/")] // CIAM CUD Authority
[InlineData("https://MSIDLABCIAM6.ciamlogin.com")] // CIAM authority
[InlineData("https://login.msidlabsciam.com/fe362aec-5d43-45d1-b730-9755e60dc3b9/v2.0/")] // CIAM CUD Authority
[SupportedOSPlatform("windows")]
public async Task ChallengeUser_MicrosoftIdFlow_LocalApp_ValidEmailWithCiamPasswordAsync(string authority)
{
Expand Down

0 comments on commit e7ebc1b

Please sign in to comment.