Eddie Stanley
Eddie Stanley
Plus one for this. Some additional reasons why the `data` / `errors` indices might not correspond to actual line numbers: * Lines being skipped due to being empty * `beforeFirstChunk`...
Hi @nickdodd79, Thanks for getting back to me. I've tested it using `Bogus.Faker` _directly_ and ~~it works just fine~~ I have been able to reproduce the problem: ```csharp public async...
>Thanks for the update. I can see that switching AutoFaker for Faker does make the tests pass, which is certainly interesting That's because (without the rule), `Bogus.Faker` will leave the...
> Where possible, I'd probably also take the opportunity to re-work `.UseSeed(int val)` to include an optional parameter to anchor time too. ie: `.UseSeed(int val, DateTime? anchor = null)` because...
> However I feel that flatMap for a validation/either accumulation purpose is a bit artificial, because the point is that you're supposed to transform the value, meaning often change the...
If we just wanted to support collecting processing instructions we could allow the calling code to do this pretty easily - something like this: ```javascript diff --git a/src/parser.coffee b/src/parser.coffee index...
Ironically, `Directory.Build.Props` & `Directory.Build.Targets` files make **keeping things consistent** _easier_ - however they make **checking things are consistent** _harder_ 🤔
> Fixing this would be reasonably straight-forward @andrewabest do you have some thoughts in mind as to how we could address this?
I _think_ you're suggesting that we should fully evaluate the project XML and pass the "composed" `csproj` (i.e. **post-application** of `Directory.Build.Props` & `Directory.Build.Targets`) to Conventional conventions (in other words, treating...
A related use-case - we're relying on `silenceMessage` to silence some annoying warning mesages. _Sometimes_, those warning messages are emited during `beforeAll` - at the moment, `jest-fail-on-console` is unable to...