Merge pull request #14062 from Budibase/fix/date-js-test-failure

Fixing a date JS test case
This commit is contained in:
Michael Drury 2024-07-01 13:37:20 +01:00 committed by GitHub
commit dd4db8100f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 () => {