using Elsa.Activities.UserTask.Activities;
using Elsa.Core.IntegrationTests.Workflows;
namespace Elsa.Core.IntegrationTests.Autofixture
{
public static class TestingElsaOptionsExtensions
{
///
/// Adds the minimal activities and workflow applicable to running the .
///
/// An elsa options
/// The same else options, so calls may be chained
public static ElsaOptions AddPersistableWorkflow(this ElsaOptions elsa)
{
elsa.AddActivity();
elsa.AddWorkflow();
return elsa;
}
}
}