Untitled
unknown
plain_text
a year ago
445 B
10
Indexable
using Microsoft.Extensions.DependencyInjection;
using TechTalk.SpecFlow;
using BoDi; // ✅ Required for Dependency Injection
[Binding]
internal class DependenciesHooks
{
[ScenarioDependencies]
public static IServiceCollection CreateServices()
{
var services = new ServiceCollection();
// ✅ Ensure AllureBindings is ignored
return new AllureIndifferentServiceCollection(services);
}
}
Editor is loading...
Leave a Comment