Buildkite Test Engine Client (bktec) is an open source tool to orchestrate your test suites. It uses your Buildkite Test Engine suite data to intelligently partition and parallelise your tests.
bktec doesn't print the actual command when running Jest. This PR fixes the issue by moving the printing from each test runner's Run function to the underlying runAndForwardSignal function used within the Run function. This avoids having to print the command in each test runner.
Have you verified that it doesn't affect the formatting of the run commands for the other test runners? I see from the PR that they all have custom formatting atm
bktec
doesn't print the actual command when running Jest. This PR fixes the issue by moving the printing from each test runner'sRun
function to the underlyingrunAndForwardSignal
function used within theRun
function. This avoids having to print the command in each test runner.