discourse/plugins/poll/test/javascripts/acceptance/polls-bar-chart-test-mobile.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
JavaScript
Raw Normal View History

import { click, visit } from "@ember/test-helpers";
import { test } from "qunit";
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
2019-01-24 01:27:21 +08:00
acceptance("Rendering polls with bar charts - mobile", function (needs) {
needs.user();
needs.mobileView();
needs.settings({ poll_enabled: true });
needs.pretender((server, helper) => {
server.get("/polls/voters.json", () => {
return helper.response({
voters: Array.from(new Array(10), (_, i) => ({
id: 500 + i,
username: `bruce${500 + i}`,
avatar_template: "/images/avatar.png",
name: "Bruce Wayne",
})),
});
});
});
2019-01-24 01:27:21 +08:00
test("Public number poll", async function (assert) {
await visit("/t/-/13");
2019-01-24 01:27:21 +08:00
assert.dom(".poll").exists({ count: 1 }, "renders the poll correctly");
2019-01-24 01:27:21 +08:00
await click("button.toggle-results");
2019-01-24 01:27:21 +08:00
assert
.dom(".poll-voters:nth-of-type(1) li")
.exists({ count: 25 }, "displays the right number of voters");
2019-01-24 01:27:21 +08:00
assert
.dom(".poll-voters:nth-of-type(1) li:nth-of-type(1) a")
.doesNotHaveAttribute("href", "user URL does not exist");
2019-01-24 01:27:21 +08:00
await click(".poll-voters-toggle-expand:nth-of-type(1) a");
2019-01-24 01:27:21 +08:00
assert
.dom(".poll-voters:nth-of-type(1) li")
.exists({ count: 35 }, "displays the right number of voters");
});
2019-01-24 01:27:21 +08:00
});