This is how my tests look like, in a public class SomeTests : VerifyBase:
var newText = GetNewText(); //this is what I want to test
var settings = new VerifySettings();
settings.UseDirectory($"./TestProjects/");
settings.UseFileName(fileName);
await Verify(newText, extension: "txt", settings: settings).ConfigureAwait(false);
with an accompaning ModuleInitializer for the VerifyDiffPlex.
I have P4Merge installed.
Up until Verify.MSTest nuget package version 24.2.0, the diff tool opens in two-way mode, pressing "escape" closes it without any prompt.
Starting with version 25.0.0 (and no other changes), the same tool opens in threee-way mode, and when I press "escape" it asks me if I want to save changes.
Describe the bug
This is how my tests look like, in a
public class SomeTests : VerifyBase
:with an accompaning
ModuleInitializer
for theVerifyDiffPlex
.I have P4Merge installed. Up until
Verify.MSTest
nuget package version 24.2.0, the diff tool opens in two-way mode, pressing "escape" closes it without any prompt. Starting with version 25.0.0 (and no other changes), the same tool opens in threee-way mode, and when I press "escape" it asks me if I want to save changes.