Iaroslav Voloshchuk
Iaroslav Voloshchuk
@KatSick benchmark results look awesome! thanks! @blacktaxi what do you think about those changes? Are we safe to merge it now, or you have any other objections?
A possible solution is to pass into https://jestjs.io/docs/cli#--filterfile something like: ``` const jestTestFilter: Filter = async testPaths => { if ('TESTBRIDGE_TEST_ONLY' in process.env) { const issuesFilterRegexp = new RegExp(process.env.TESTBRIDGE_TEST_ONLY!) const...
@jbedard Specifying the test filter usually means that we will execute much fewer suite files. In most situations, it is used to test only a single suite, and in such...