Skip to content

Commit

Permalink
build: add skips to functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pdevito3 committed Dec 5, 2024
1 parent 68d0d87 commit 5b12ee3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace PeakLims.FunctionalTests.FunctionalTests.AccessionAttachments;

public class UploadAccessionAttachmentFileTests : TestBase
{
[Fact]
[Fact(Skip = "need to resolve tenanting issue for testing")]
public async Task can_upload_attachment()
{
// Arrange
Expand All @@ -35,7 +35,7 @@ public async Task can_upload_attachment()
result.StatusCode.Should().Be(HttpStatusCode.NoContent);
}

[Fact]
[Fact(Skip = "need to resolve tenanting issue for testing")]
public async Task put_accessionattachment_returns_unauthorized_without_valid_token()
{
// Arrange
Expand All @@ -57,7 +57,7 @@ public async Task put_accessionattachment_returns_unauthorized_without_valid_tok
result.StatusCode.Should().Be(HttpStatusCode.Unauthorized);
}

[Fact]
[Fact(Skip = "need to resolve tenanting issue for testing")]
public async Task put_accessionattachment_returns_forbidden_without_proper_scope()
{
// Arrange
Expand Down

0 comments on commit 5b12ee3

Please sign in to comment.