it('should call window.performance.mark with the correct argument', () => {
      spy = jest.spyOn(WP, 'mark');
      start('metric_moon');
      expect(spy.mock.calls.length).toBe(1);
      expect(spy).toHaveBeenCalledWith('mark_metric_moon_start');