Hello I have an issue when using approval test with ncrunch.
Ncrunch restart testing permanently.
I think it's due to the generation of .received file, I have put *.received.* in FilesExcludedFromAutoBuild but it's keep runing.
To reproduce it. I have created a simple nunit test project with this class only
public class Tests
{
[Test]
[UseReporter(typeof(DiffReporter))]
public void Test1()
{
Approvals.VerifyJson("{}");
}
[Test]
[UseReporter(typeof(DiffReporter))]
public void Test2()
{
Approvals.VerifyJson("{}");
}
}
Regards
Edited 19 Mar 2021 11:41 UTC