Display timestamp when test run locally

Hi,
the result output is there way where we could print, or log timestamp of when the test started.

Hi, welcome to the forum!

If by “test started” you mean when the first iteration of the default function started, then you could do something like:

export default function () {
  if (__ITER == 0) {
    console.log(`test started: ${new Date().toISOString()}`);
  }
  ...
}

You could also log this in setup() since it’s run only once before the actual test starts.

Hope this helps,

Ivan