mirror of
https://github.com/discourse/discourse.git
synced 2025-02-17 01:22:44 +08:00
This is an attempt to fix a qunit heisentest
This commit is contained in:
parent
a5608025aa
commit
35d9d668c3
|
@ -7,9 +7,9 @@ QUnit.test("Do not track mentions", async assert => {
|
||||||
pretender.post("/clicks/track", () => assert.ok(false));
|
pretender.post("/clicks/track", () => assert.ok(false));
|
||||||
|
|
||||||
await visit("/t/internationalization-localization/280");
|
await visit("/t/internationalization-localization/280");
|
||||||
assert.ok(invisible(".user-card"), "card should not appear");
|
assert.ok(find(".user-card.show").length === 0, "card should not appear");
|
||||||
|
|
||||||
await click("article[data-post-id=3651] a.mention");
|
await click("article[data-post-id=3651] a.mention");
|
||||||
assert.ok(visible(".user-card"), "card should appear");
|
assert.ok(find(".user-card.show").length === 1, "card appear");
|
||||||
assert.equal(currentURL(), "/t/internationalization-localization/280");
|
assert.equal(currentURL(), "/t/internationalization-localization/280");
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user