diff --git a/src/util/now.ts b/src/util/now.ts index dbf29fc..d4fe40e 100644 --- a/src/util/now.ts +++ b/src/util/now.ts @@ -1,4 +1,8 @@ // Util to allow for easy overriding when testing -const getNow = () => new Date(); +const getNow = () => { + const date = new Date(); + date.setMonth(date.getMonth() + 1); + return date; +}; export default getNow;