Response status code does not indicate success: 500 (Internal Server Error).
This commit is contained in:
parent
b46e786ace
commit
57609e6ed3
14 changed files with 148 additions and 57 deletions
|
|
@ -57,10 +57,10 @@ dataTable.Rows.Add(dataRow);
|
|||
Assert.NotNull(vm.Resources);
|
||||
}
|
||||
[Fact]
|
||||
public async Task TestPush()
|
||||
public void TestPush()
|
||||
{
|
||||
Program.LoadConfig();
|
||||
var report = await Program.PushPkgAsync(new string[] { "bin/Debug/isn.1.0.1.nupkg" });
|
||||
var report = Program.PushPkg(new string[] { "/home/paul/Nupkgs/Yavsc.Abstract.1.0.8.nupkg" });
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6</TargetFrameworks>
|
||||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ namespace isnd.host.tests
|
|||
public class UnitTestWebHost
|
||||
{
|
||||
const string testingUrl = "http://localhost:5000";
|
||||
[Fact]
|
||||
|
||||
|
||||
public void TestHaveTestDbContextAndMigrate()
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6</TargetFramework>
|
||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
<UserSecretsId>d7144e46-4e63-4391-ba86-64b61f6e7be4</UserSecretsId>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue