Skip to content

Commit

Permalink
changed MsIdentityTests temp test projects to use net5.0 due to missi…
Browse files Browse the repository at this point in the history
…ng preview packages.
  • Loading branch information
deepchoudhery committed Aug 3, 2021
1 parent c644a3f commit 2669a3e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ public void TestProjectDescriptionReader(string folderPath, string command, stri
Assert.Equal(callsWebApi, authenticationSettings.ApplicationParameters.CallsDownstreamApi);
}

[InlineData(@"blazorwasm\blazorwasm-b2c", "dotnet new blazorwasm --auth IndividualB2C --client-id fdb91ff5-5ce6-41f3-bdbd-8267c817015d --domain fabrikamb2c.onmicrosoft.com", "dotnet-blazorwasm", true)]
[InlineData(@"blazorwasm\blazorwasm-singleorg", "dotnet new blazorwasm --auth SingleOrg --client-id 86699d80-dd21-476a-bcd1-7c1a3d471f75", "dotnet-blazorwasm")]
[Theory]
[InlineData(@"blazorwasm\blazorwasm-b2c", "dotnet new blazorwasm --framework net5.0 --auth IndividualB2C --client-id fdb91ff5-5ce6-41f3-bdbd-8267c817015d --domain fabrikamb2c.onmicrosoft.com", "dotnet-blazorwasm", true)]
[InlineData(@"blazorwasm\blazorwasm-singleorg", "dotnet new blazorwasm --framework net5.0 --auth SingleOrg --client-id 86699d80-dd21-476a-bcd1-7c1a3d471f75", "dotnet-blazorwasm")]
[Theory(Skip="The newly created test project wants new packages that don't exist on official feeds. Will rework for next update.")]
public void TestProjectDescriptionReader_TemplatesWithBlazorWasm(string folderPath, string command, string expectedProjectType, bool isB2C = false)
{
string createdProjectFolder = CreateProjectIfNeeded(folderPath, command, "ProjectDescriptionReaderTests");
Expand Down

0 comments on commit 2669a3e

Please sign in to comment.