diff --git a/package.json b/package.json index 32d529f83f..401b0dba81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "worldbrain-extension", - "version": "0.15.0", + "version": "0.15.1", "homepage": "https://worldbrain.io", "license": "MIT", "repository": { diff --git a/src/util/nice-time.test.js b/src/util/nice-time.test.js index 013be546e7..45218fdcf4 100644 --- a/src/util/nice-time.test.js +++ b/src/util/nice-time.test.js @@ -17,7 +17,7 @@ describe('niceTime', () => { test('should return timeperiod stamp for timeperiod less than 24 hours', () => { const date = new Date(2016, 7, 2, 14, 25) const now = new Date(2016, 7, 2, 18, 55) - expect(niceTime(date, { now })).toBe('14:25') + expect(niceTime(date, { now })).toBe('Today 14:25') }) test('should return the timeperiod stamp and the day for timeperiod less than 24 hours but not on the same day', () => {