mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:53:32 +08:00
26c2fb4354
This test might be responsible of random test failures, skip this for now to check if the random failure sill happens after dozens of tests.
16 lines
564 B
JavaScript
16 lines
564 B
JavaScript
import pretender from "helpers/create-pretender";
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Click Track", {});
|
|
|
|
QUnit.skip("Do not track mentions", async assert => {
|
|
pretender.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");
|
|
});
|