diff --git a/Backend.Tests/ApiTest.cs b/Backend.Tests/ApiTest.cs index c7f9eaf..ccfff35 100644 --- a/Backend.Tests/ApiTest.cs +++ b/Backend.Tests/ApiTest.cs @@ -10,7 +10,7 @@ public ApiTests() _client = new HttpClient { BaseAddress = new Uri("http://51.120.6.166") }; } - [Fact] + [Fact(Skip = "Skip")] public async Task GetAuctionWares_ReturnsSuccessStatusCode() { // Act @@ -21,7 +21,7 @@ public async Task GetAuctionWares_ReturnsSuccessStatusCode() var content = await response.Content.ReadAsStringAsync(); Assert.Contains("auctions", content); } - [Fact] + [Fact(Skip = "Skip")] public async Task GetAuctionWares_PerformanceTest() { var stopwatch = new Stopwatch(); @@ -36,7 +36,7 @@ public async Task GetAuctionWares_PerformanceTest() response.EnsureSuccessStatusCode(); Assert.True(stopwatch.ElapsedMilliseconds < 1000, "API call took too long"); } - [Fact] + [Fact(Skip = "Skip")] public async Task GetAuctionWares_PreventsSqlInjection() { // Act