Fixing an issue with a JS testcase that depended on dates, when the month changed to July this broke - making the dates fixed to avoid this in future.

This commit is contained in:
mike12345567 2024-07-01 13:12:20 +01:00
parent 323a855d81
commit c2d5011576
1 changed files with 7 additions and 2 deletions

View File

@ -91,8 +91,13 @@ describe("jsRunner (using isolated-vm)", () => {
})
it("handle test case 2", async () => {
const todayDate = new Date()
// add a year and a month
todayDate.setMonth(new Date().getMonth() + 1)
todayDate.setFullYear(todayDate.getFullYear() + 1)
const context = {
"Purchase Date": DATE,
today: todayDate.toISOString(),
}
const result = await processJS(
`
@ -100,7 +105,7 @@ describe("jsRunner (using isolated-vm)", () => {
let purchaseyear = purchase.getFullYear();
let purchasemonth = purchase.getMonth();
var today = new Date ();
var today = new Date($("today"));
let todayyear = today.getFullYear();
let todaymonth = today.getMonth();
@ -113,7 +118,7 @@ describe("jsRunner (using isolated-vm)", () => {
context
)
expect(result).toBeDefined()
expect(result).toBe(3)
expect(result).toBe(1)
})
it("should handle test case 3", async () => {