Resolve issue #604

This commit is contained in:
Eric MORAND 2024-01-18 13:18:52 +01:00
parent e1a9315c7d
commit cccbb7c072
3 changed files with 6 additions and 5 deletions

View File

@ -27,5 +27,9 @@
"reporter": [
"text-summary",
"html"
]
],
"include": [
"**/src/**"
],
"exclude": []
}

View File

@ -1,3 +0,0 @@
export function push(map: Map<any, any>, item: any) {
map.set(map.size, item);
}

View File

@ -9,7 +9,7 @@ runTest({
`
},
context: Promise.resolve({
date: new Date('2000-01-01T00:00:00') // this is UTC
date: new Date('2000-01-01T00:00:00Z') // this is UTC
}),
trimmedExpectation: 'January 1, 2000 00:00'
});