It would be nice if d() accepted multiple arguments and would concatenate them to make a single description

d(__filename, 'functionBeingTested()', () => {
  it('should be awesome', () => {});
});

This would produce test case suite printing something like this:

  hello-world.ts functionBeingTested()
    ✓ should be awesome