How to append current time in build name on JS-Jest?

Can I append current time in build name on JS-Jest?

Hi Devan,

Here’s how Suite is formed in JS-Jest(it’s TDD implementation, but it it is similar for BDD):

context.suite = function(title, fn){
      var suite = Suite.create(suites[0], title);
      suite.file = file;
      suites.unshift(suite);
      fn.call(suite);
      suites.shift();
      return suite;
    };