Skip to content

Commit

Permalink
Properly skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
corstian committed Oct 21, 2024
1 parent 1c048f3 commit 03a0621
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ private Task<IResult<IEventEnvelope[]>> _evaluation
=> new DomainContext(fixture.Cluster.Client.ServiceProvider)
.EvaluateCommand(Guid.NewGuid().ToString(), new TestCommand());

[Fact(Skip = "")]
[Fact(Skip = "_")]
public async Task CanInvokeCommand()
=> (await _evaluation).IsSuccess.Should().BeTrue();

[Fact(Skip = "")]
[Fact(Skip = "_")]
public async Task ReceivesSerializedEventInResponse()
=> (await _evaluation).Value.Should().ContainSingle();

[Fact(Skip = "")]
[Fact(Skip = "_")]
public async Task CanInspectEvent()
=> (await _evaluation).Value[0].Should().BeAssignableTo<IEventEnvelope<TestEvent>>();

[Fact(Skip = "")]
[Fact(Skip = "_")]
public async Task CanAccessEventData()
=> (await _evaluation).Value[0].Message.Should().BeAssignableTo<TestEvent>();

[Fact(Skip = "")]
[Fact(Skip = "_")]
public async Task FlagIsTrue()
=> ((TestEvent)(await _evaluation).Value[0].Message).Flag.Should().BeTrue();
}

0 comments on commit 03a0621

Please sign in to comment.