import { now } from"../../utility/date/now";describe('now', () => {test('now should return a timestamp like `Date.now()` and `new Date().getTime()`', () => {constexpected= { type:'number', };constresult=now();expect(typeof result).toBe(expected.type); })})