|
|
|
@ -3,6 +3,7 @@ import 'babel-polyfill'; |
|
|
|
|
import assert from 'assert'; |
|
|
|
|
import { timeAgo } from '../helpers'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
describe('Helpers', () => { |
|
|
|
|
describe('timeAgo', () => { |
|
|
|
|
it('returns formated time when the passed value is on the same day', () => { |
|
|
|
@ -12,9 +13,11 @@ describe('Helpers', () => { |
|
|
|
|
const t2 = new Date('Mon Aug 06 2018 10:00:10'); |
|
|
|
|
const t3 = new Date('Mon Aug 06 2018 14:30:10'); |
|
|
|
|
|
|
|
|
|
assert.equal(timeAgo(t1, now), '1:00 AM'); |
|
|
|
|
assert.equal(timeAgo(t2, now), '10:00 AM'); |
|
|
|
|
assert.equal(timeAgo(t3, now), '2:30 PM'); |
|
|
|
|
const func = (a) => a; |
|
|
|
|
|
|
|
|
|
assert.equal(timeAgo(t1, func, now), '1:00 AM'); |
|
|
|
|
assert.equal(timeAgo(t2, func, now), '10:00 AM'); |
|
|
|
|
assert.equal(timeAgo(t3, func, now), '2:30 PM'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
it('returns "yesterday" when the passed value is on the day before', () => { |
|
|
|
@ -24,9 +27,11 @@ describe('Helpers', () => { |
|
|
|
|
const t2 = new Date('Tue Jul 02 2018 22:30:00'); |
|
|
|
|
const t3 = new Date('Tue Jul 02 2018 01:00:00'); |
|
|
|
|
|
|
|
|
|
assert.equal(timeAgo(t1, now), 'yesterday'); |
|
|
|
|
assert.equal(timeAgo(t2, now), 'yesterday'); |
|
|
|
|
assert.equal(timeAgo(t3, now), 'yesterday'); |
|
|
|
|
const func = (a) => a; |
|
|
|
|
|
|
|
|
|
assert.equal(timeAgo(t1, func, now), 'yesterday'); |
|
|
|
|
assert.equal(timeAgo(t2, func, now), 'yesterday'); |
|
|
|
|
assert.equal(timeAgo(t3, func, now), 'yesterday'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
it('returns formated date when the passed value two or more days before', () => { |
|
|
|
@ -38,11 +43,13 @@ describe('Helpers', () => { |
|
|
|
|
const t4 = new Date('Sun May 20 2018 00:00:01'); |
|
|
|
|
const t5 = new Date('Fri Nov 10 2017 00:00:00'); |
|
|
|
|
|
|
|
|
|
assert.equal(timeAgo(t1, now), 'Jun 18, 2018'); |
|
|
|
|
assert.equal(timeAgo(t2, now), 'Jun 10, 2018'); |
|
|
|
|
assert.equal(timeAgo(t3, now), 'May 10, 2018'); |
|
|
|
|
assert.equal(timeAgo(t4, now), 'May 20, 2018'); |
|
|
|
|
assert.equal(timeAgo(t5, now), 'Nov 10, 2017'); |
|
|
|
|
const func = () => 'should not be called'; |
|
|
|
|
|
|
|
|
|
assert.equal(timeAgo(t1, func, now), 'Jun 18, 2018'); |
|
|
|
|
assert.equal(timeAgo(t2, func, now), 'Jun 10, 2018'); |
|
|
|
|
assert.equal(timeAgo(t3, func, now), 'May 10, 2018'); |
|
|
|
|
assert.equal(timeAgo(t4, func, now), 'May 20, 2018'); |
|
|
|
|
assert.equal(timeAgo(t5, func, now), 'Nov 10, 2017'); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|