👷 Tests, how do they work
This commit is contained in:
parent
1b3568e66e
commit
582ef30b4a
2 changed files with 5 additions and 5 deletions
|
@ -263,15 +263,15 @@ describe('crashReporter module', () => {
|
|||
|
||||
// Let's find the newest report
|
||||
const newestReport = reports.reduce((acc, cur) => {
|
||||
const timestamp = new Date(cur.timestamp).getTime();
|
||||
const timestamp = new Date(cur.date).getTime();
|
||||
return (timestamp > acc.timestamp)
|
||||
? { report: cur, timestamp: timestamp }
|
||||
: acc
|
||||
}, { timestamp: 0 })
|
||||
|
||||
// In our case, the first report is actually the newest
|
||||
|
||||
assert(lastReport != null)
|
||||
assert(lastReport === newestReport.report)
|
||||
assert(lastReport.date.toString() === newestReport.report.date.toString())
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue