Merge pull request #6290 from techAPJ/latest-full-name

UX: show full name on /latest page
This commit is contained in:
Arpit Jalan
2018-08-23 17:34:54 +05:30
committed by GitHub
8 changed files with 53 additions and 8 deletions
@@ -7,6 +7,12 @@ QUnit.test("Visit Discovery Pages", async assert => {
assert.ok(exists(".topic-list"), "The list of topics was rendered");
assert.ok(exists(".topic-list .topic-list-item"), "has topics");
assert.equal(
find("a[data-user-card=eviltrout]:first img.avatar").attr("title"),
"Evil Trout - Most Posts",
"it shows user's full name in avatar title"
);
await visit("/c/bug");
assert.ok(exists(".topic-list"), "The list of topics was rendered");
assert.ok(exists(".topic-list .topic-list-item"), "has topics");