mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 05:03:43 +08:00
8d50f092b5
Styling based on element-ids, it is impossible for themes/plugins to display multiple cards on a single page. Using classes is a more flexible approach. The element-ids are maintained for backwards compatibility with existing plugins/themes.
16 lines
533 B
JavaScript
16 lines
533 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Click Track", {});
|
|
|
|
QUnit.test("Do not track mentions", async assert => {
|
|
/* global server */
|
|
server.post("/clicks/track", () => assert.ok(false));
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
assert.ok(invisible(".user-card"), "card should not appear");
|
|
|
|
await click("article[data-post-id=3651] a.mention");
|
|
assert.ok(visible(".user-card"), "card should appear");
|
|
assert.equal(currentURL(), "/t/internationalization-localization/280");
|
|
});
|