Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ private async Task TestWorkflowEndToEndActivitiesAsync(string executionEnvironme
activityEvents.Should().Contain(e => e.Name == EventNames.WorkflowCompleted, "activity should have workflow completed event");
}

[Fact]
[Fact(Skip = "Flaky test - temporarily disabled.")]
Comment thread
westey-m marked this conversation as resolved.
public async Task CreatesWorkflowEndToEndActivities_WithCorrectName_DefaultAsync()
{
await this.TestWorkflowEndToEndActivitiesAsync("Default");
}

[Fact(Skip = "Flaky test - temporarily disabled. Tracked in #12345")]
[Fact(Skip = "Flaky test - temporarily disabled.")]
Comment thread
westey-m marked this conversation as resolved.
public async Task CreatesWorkflowEndToEndActivities_WithCorrectName_OffThreadAsync()
Comment thread
westey-m marked this conversation as resolved.
{
await this.TestWorkflowEndToEndActivitiesAsync("OffThread");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public async Task WorkflowRunActivity_IsStopped_LockstepAsync()
/// Verifies that the workflow_invoke Activity is stopped when using the OffThread (Default)
/// execution environment (StreamingRunEventStream).
/// </summary>
[Fact]
[Fact(Skip = "Flaky test - temporarily disabled.")]
Comment thread
westey-m marked this conversation as resolved.
public async Task WorkflowRunActivity_IsStopped_OffThreadAsync()
{
// Arrange
Expand Down Expand Up @@ -156,7 +156,7 @@ public async Task WorkflowRunActivity_IsStopped_OffThreadAsync()
/// (StreamingRun.WatchStreamAsync) with the OffThread execution environment.
/// This matches the exact usage pattern described in the issue.
/// </summary>
[Fact]
[Fact(Skip = "Flaky test - temporarily disabled.")]
Comment thread
westey-m marked this conversation as resolved.
Comment thread
westey-m marked this conversation as resolved.
public async Task WorkflowRunActivity_IsStopped_Streaming_OffThreadAsync()
{
// Arrange
Expand Down
Loading