Server: split tests utils in multiple files
[oweals/peertube.git] / server / tests / utils / miscs.js
1 'use strict'
2
3 const miscsUtils = {
4   dateIsValid: dateIsValid
5 }
6
7 // ---------------------- Export functions --------------------
8
9 function dateIsValid (dateString) {
10   const dateToCheck = new Date(dateString)
11   const now = new Date()
12
13   // Check if the interval is more than 2 minutes
14   if (now - dateToCheck > 120000) return false
15
16   return true
17 }
18
19 // ---------------------------------------------------------------------------
20
21 module.exports = miscsUtils