mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 09:57:25 +08:00
UX: Always use relative age for post notices.
This commit is contained in:
@ -874,11 +874,13 @@ widgetTest("pm map", {
|
||||
widgetTest("post notice - with username", {
|
||||
template: '{{mount-widget widget="post" args=args}}',
|
||||
beforeEach() {
|
||||
const date_2d_ago = new Date();
|
||||
date_2d_ago.setDate(date_2d_ago.getDate() - 2);
|
||||
this.siteSettings.prioritize_username_in_ux = true;
|
||||
this.siteSettings.old_post_notice_days = 14;
|
||||
this.set("args", {
|
||||
postNoticeType: "returning",
|
||||
postNoticeTime: new Date(2010, 0, 1),
|
||||
postNoticeTime: date_2d_ago,
|
||||
username: "codinghorror",
|
||||
name: "Jeff",
|
||||
created_at: new Date()
|
||||
@ -889,7 +891,7 @@ widgetTest("post notice - with username", {
|
||||
find(".post-notice.returning-user:not(.old)")
|
||||
.text()
|
||||
.trim(),
|
||||
I18n.t("post.notice.return", { user: "codinghorror", time: "Jan '10" })
|
||||
I18n.t("post.notice.return", { user: "codinghorror", time: "2d ago" })
|
||||
);
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user