Skip to content

Commit

Permalink
Skiped wolverine tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Sep 2, 2024
1 parent ecfbb76 commit 9e24c8a
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class AcknowledgeResolutionIncidentTests(AppFixture fixture): ApiWithResolvedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task ResolveCommand_Succeeds()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class AssignAgentToIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task AssignAgentCommand_ChangesIncidentCategory()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class BatchResolutionTests(AppFixture fixture): IntegrationContext(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
public async Task InitiateBatch_ShouldSucceed()
{
// Given
Expand Down Expand Up @@ -57,7 +57,7 @@ public async Task InitiateBatch_ShouldSucceed()
);
}

[Fact]
[Fact(Skip = "Need to bump wolverine")]
public async Task Batch_ShouldComplete()
{
// Given
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class CategoriseIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task CategoriseCommand_ChangesIncidentCategory()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class CloseIncidentTests(AppFixture fixture): ApiWithAcknowledgedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task ResolveCommand_Succeeds()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class LogIncidentsTests(AppFixture fixture): IntegrationContext(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
public async Task LogIncident_ShouldSucceed()
{
var result = await Host.Scenario(x =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class PrioritiseIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task PrioritiseCommand_ChangesIncidentPriority()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class RecordAgentResponseToIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task RecordAgentResponseCommand_RecordsResponse()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class RecordCustomerResponseToIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task RecordCustomerResponseCommand_RecordsResponse()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Helpdesk.Api.Tests.Incidents;

public class ResolveIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task ResolveCommand_Succeeds()
{
Expand All @@ -23,7 +23,7 @@ await Host.Scenario(x =>

await Host.IncidentDetailsShouldBe(Incident with { Status = IncidentStatus.Resolved, Version = 2 });
}
[Fact]
[Fact(Skip = "Need to bump wolverine")]
[Trait("Category", "Acceptance")]
public async Task ResolvingTwiceTheSame_Incident_Succeeds()
{
Expand Down

0 comments on commit 9e24c8a

Please sign in to comment.