buerokratt / POC-DMR.Cross-functional-requirements

Cross-functional requirements to take into account when developing or planning to develop Bürokratt's custom base components
MIT License
1 stars 1 forks source link

Cross: Configure Stryker to avoid mutating ConfigureAwait #64

Open guypritchard opened 2 years ago

guypritchard commented 2 years ago

We're seeing Stryker mutating the input value of ConfigureAwait() which makes for untestable (or at least exceedingly difficult to test) cases anywhere we're using await.

I've configured CentOps to avoid this method:

stryker-config.json

"ignore-methods" : [ "ConfigureAwait" ]

We should probably be consistent and do this for all repositories we're using Stryker