Josh Keegan

Results 12 issues of Josh Keegan

I've had a problem using this library alongside another one that declared their own global require function. This is because when you try to get d3, you first check for...

It would be helpful to have `.Should().BeCloseTo(...)` available for `DateTimeOffset?` (nullable). Currently I've had to do: ```cs if (request.PreferredAt == null) { response.PreferredAt.Should().BeNull(); } else { request.PreferredAt.Should() .BeCloseTo(response.PreferredAt.Value, TestConstants.MaxAllowedClockDriftMs); }...

enhancement

### SpecFlow Version 3.10.2-beta ### Which test runner are you using? xUnit ### Test Runner Version Number 2.4.1 ### .NET Implementation .NET 6.0 ### Project Format of the SpecFlow project...

Bug

### SpecFlow Version 3.9.40 ### Which test runner are you using? xUnit ### Test Runner Version Number 2.4.1 ### .NET Implementation equal or greater .NET Framework 4.6.1 ### Project Format...

Feature-Request
Runtime
Difficulty: hard
Severity: low

Currently, if SQL Server is stopped whilst a job is running, when the server comes back up Opserver shows the job as still running. This PR changes that behaviour so...

Add a global configuration that would allow for defaults to be set for an entire test project. This would be at the xRetry level (so would apply to specflow and...

enhancement

Digging through Specflow code & spotted some VB references. The specflow generator tests are currently all C#. Having a VB test suite, even if just a smoke test, would be...

Currently dependabot manages upgrading nuget packages but a Specflow update actually updates multiple packages. Dependabot sees these as separate and so opens a PR for each one, with each build...

enhancement

Add a global config to allow for the user to specify that they would like all scenarios to be retried by default. Using `@retry(n)` tag on a scenario would still...

enhancement

Hi, When I use autofixture to generate a `Dictionary` I get values populated in it by default, but with a `ConcurrentDictionary` I don't. Is this by design & I should...

feature request