Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK committed Oct 20, 2020
1 parent a98efa4 commit b6cb0d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 105 deletions.
10 changes: 5 additions & 5 deletions test/FunctionalTests/Linker/LinkerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public async Task RunWebsiteAndCallWithClient_Success()

try
{
await PublishApp(projectDirectory + @"\..\..\testassets\LinkerTestsWebsite\LinkerTestsWebsite.csproj", linkerTestsWebsitePath)
.TimeoutAfter(Timeout);
await PublishApp(projectDirectory + @"\..\..\testassets\LinkerTestsClient\LinkerTestsClient.csproj", linkerTestsClientPath)
.TimeoutAfter(Timeout);
var publishWebsiteTask = PublishAppAsync(projectDirectory + @"\..\..\testassets\LinkerTestsWebsite\LinkerTestsWebsite.csproj", linkerTestsWebsitePath);
var publishClientTask = PublishAppAsync(projectDirectory + @"\..\..\testassets\LinkerTestsClient\LinkerTestsClient.csproj", linkerTestsClientPath);

await Task.WhenAll(publishWebsiteTask, publishClientTask).TimeoutAfter(Timeout);

websiteProcess.Start(Path.Combine(linkerTestsWebsitePath, "LinkerTestsWebsite.dll"));
await websiteProcess.WaitForReadyAsync().TimeoutAfter(Timeout);
Expand Down Expand Up @@ -92,7 +92,7 @@ private void EnsureDeleted(string path)
}
}

private static async Task PublishApp(string path, string outputPath)
private static async Task PublishAppAsync(string path, string outputPath)
{
var resolvedPath = Path.GetFullPath(path);
Console.WriteLine($"Publishing {resolvedPath}");
Expand Down
67 changes: 0 additions & 67 deletions testassets/Greeter/Greeter.sln

This file was deleted.

33 changes: 0 additions & 33 deletions testassets/Greeter/Proto/greet.proto

This file was deleted.

0 comments on commit b6cb0d6

Please sign in to comment.