This line
--------
// Default of how many files to open during test file discovery
public const int DefaultFileSeachLimit = 300;
--------
When we ran Chutzpah as part of the build on TFS12, it stopped and cancelled the test run when we had more than 300 tests.
When changing the constant to 5000 the tests passed.
Is this a bug or feature? :)
Maybe it is intended as a 'batch' size and not the total number of supported tests?
In the TFS build output, this appears as an exception.
"An exception occurred while invoking executor 'executor://chutzpah-js/': The operation was canceled."
--------
// Default of how many files to open during test file discovery
public const int DefaultFileSeachLimit = 300;
--------
When we ran Chutzpah as part of the build on TFS12, it stopped and cancelled the test run when we had more than 300 tests.
When changing the constant to 5000 the tests passed.
Is this a bug or feature? :)
Maybe it is intended as a 'batch' size and not the total number of supported tests?
In the TFS build output, this appears as an exception.
"An exception occurred while invoking executor 'executor://chutzpah-js/': The operation was canceled."