mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
6f7017a887
Summary: Fixes T1905 - Gost line in recipients field Fixes T1877 - Collapsed dates should not show time Test Plan: edgehill --test Reviewers: bengotow Reviewed By: bengotow Maniphest Tasks: T1877, T1905 Differential Revision: https://phab.nylas.com/D1671
45 lines
1.8 KiB
CoffeeScript
45 lines
1.8 KiB
CoffeeScript
moment = require 'moment'
|
|
React = require 'react/addons'
|
|
TestUtils = React.addons.TestUtils
|
|
MessageTimestamp = require '../lib/message-timestamp'
|
|
|
|
testDate = ->
|
|
moment([2010, 1, 14, 15, 25, 50, 125])
|
|
|
|
describe "MessageTimestamp", ->
|
|
beforeEach ->
|
|
@item = TestUtils.renderIntoDocument(
|
|
<MessageTimestamp date={testDate()} />
|
|
)
|
|
|
|
# test messsage time is 1415814587
|
|
it "displays the time from messages LONG ago", ->
|
|
spyOn(@item, "_today").andCallFake -> testDate().add(2, 'years')
|
|
expect(@item._timeFormat()).toBe "MMM D YYYY"
|
|
|
|
it "displays the time and date from a while ago", ->
|
|
spyOn(@item, "_today").andCallFake -> testDate().add(7, 'days')
|
|
expect(@item._timeFormat()).toBe "MMM D"
|
|
|
|
it "displays the time and date from messages a couple days ago", ->
|
|
spyOn(@item, "_today").andCallFake -> testDate().add(2, 'days')
|
|
expect(@item._timeFormat()).toBe "MMM D"
|
|
|
|
it "displays the time and date messages exactly a day ago", ->
|
|
spyOn(@item, "_today").andCallFake -> testDate().add(1, 'day')
|
|
expect(@item._timeFormat()).toBe "MMM D"
|
|
|
|
it "displays the time from messages yesterday with the day, even though it's less than 24 hours ago", ->
|
|
spyOn(@item, "_today").andCallFake -> moment([2010, 1, 15, 2, 25, 50, 125])
|
|
expect(@item._timeFormat()).toBe "MMM D"
|
|
|
|
it "displays the time from messages recently", ->
|
|
spyOn(@item, "_today").andCallFake -> testDate().add(2, 'hours')
|
|
expect(@item._timeFormat()).toBe "h:mm a"
|
|
|
|
it "displays the full time when in detailed timestamp mode", ->
|
|
itemDetailed = TestUtils.renderIntoDocument(
|
|
<MessageTimestamp date={testDate()} isDetailed={true} />
|
|
)
|
|
spyOn(itemDetailed, "_today").andCallFake -> testDate()
|
|
expect(itemDetailed._timeFormat()).toBe "MMMM D, YYYY [at] h:mm A"
|