buildkite / test-engine-client

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.
MIT License
9 stars 1 forks source link

Print actual command when running Jest. #214

Closed nprizal closed 2 weeks ago

nprizal commented 2 weeks ago

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.

nprizal commented 2 weeks ago

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

Yes, I have verified all test runners locally.