In my pre-request script section I am simply doing:
const moment = require('moment');
console.log(moment().add(1,'minutes').format("YYYY-MM-DD HH:MM"));
console.log(moment().add(2,'months').format("YYYY-MM-DD HH:MM"));
Which outputs:
2020-07-29 22:07
2020-09-29 22:07
However, subsequent calls to that endpoint do not update the time it always stays at 22:07 even though the time is now 22:28.
Am I missing something?
Thanks