Skip to content

Commit

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

public class AcknowledgeResolutionIncidentTests(AppFixture fixture): ApiWithResolvedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task ResolveCommand_Succeeds()
{
await Host.Scenario(x =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ namespace Helpdesk.Api.Tests.Incidents;

public class AssignAgentToIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task AssignAgentCommand_ChangesIncidentCategory()
{
await Host.Scenario(x =>
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 migrate Wolverine at some point")]
public async Task InitiateBatch_ShouldSucceed()
{
// Given
Expand Down Expand Up @@ -57,7 +57,7 @@ public async Task InitiateBatch_ShouldSucceed()
);
}

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

public class CategoriseIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task CategoriseCommand_ChangesIncidentCategory()
{
await Host.Scenario(x =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ namespace Helpdesk.Api.Tests.Incidents;

public class CloseIncidentTests(AppFixture fixture): ApiWithAcknowledgedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task ResolveCommand_Succeeds()
{
await Host.Scenario(x =>
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 migrate Wolverine at some point")]
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,8 +9,8 @@ namespace Helpdesk.Api.Tests.Incidents;

public class PrioritiseIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task PrioritiseCommand_ChangesIncidentPriority()
{
await Host.Scenario(x =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ namespace Helpdesk.Api.Tests.Incidents;

public class RecordAgentResponseToIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task RecordAgentResponseCommand_RecordsResponse()
{
await Host.Scenario(x =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ namespace Helpdesk.Api.Tests.Incidents;

public class RecordCustomerResponseToIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task RecordCustomerResponseCommand_RecordsResponse()
{
await Host.Scenario(x =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ namespace Helpdesk.Api.Tests.Incidents;

public class ResolveIncidentTests(AppFixture fixture): ApiWithLoggedIncident(fixture)
{
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task ResolveCommand_Succeeds()
{
await Host.Scenario(x =>
Expand All @@ -23,8 +23,8 @@ await Host.Scenario(x =>

await Host.IncidentDetailsShouldBe(Incident with { Status = IncidentStatus.Resolved, Version = 2 });
}
[Fact]
[Trait("Category", "Acceptance")]
[Fact(Skip = "Need to migrate Wolverine at some point")]
[Trait("Category", "SkipCI")]
public async Task ResolvingTwiceTheSame_Incident_Succeeds()
{
var version = Incident.Version;
Expand Down

0 comments on commit 6eb610a

Please sign in to comment.