diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-08-07 22:09:59 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-08-07 22:09:59 +0200 |
commit | 8d30905858245f12a42fc327d2d57cbfe062d548 (patch) | |
tree | 9bd590872fbb753782f2ebbb9516db0414022d70 /server/tests/utils/miscs.js | |
parent | 58b2ba55a90f05f24661e664b1fb0a3486f037e8 (diff) | |
download | PeerTube-8d30905858245f12a42fc327d2d57cbfe062d548.tar.gz PeerTube-8d30905858245f12a42fc327d2d57cbfe062d548.tar.zst PeerTube-8d30905858245f12a42fc327d2d57cbfe062d548.zip |
Server: split tests utils in multiple files
Diffstat (limited to 'server/tests/utils/miscs.js')
-rw-r--r-- | server/tests/utils/miscs.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/server/tests/utils/miscs.js b/server/tests/utils/miscs.js new file mode 100644 index 000000000..5414cd561 --- /dev/null +++ b/server/tests/utils/miscs.js | |||
@@ -0,0 +1,21 @@ | |||
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 | ||