discourse/test/javascripts/acceptance/topic-discovery-test.js.es6

68 lines
2.0 KiB
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Topic Discovery");
2017-06-15 01:57:58 +08:00
QUnit.test("Visit Discovery Pages", assert => {
2014-07-31 01:27:14 +08:00
visit("/");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok($("body.navigation-topics").length, "has the default navigation");
2017-06-15 01:57:58 +08:00
assert.ok(exists(".topic-list"), "The list of topics was rendered");
2018-06-15 23:03:24 +08:00
assert.ok(exists(".topic-list .topic-list-item"), "has topics");
});
visit("/c/bug");
andThen(() => {
2017-06-15 01:57:58 +08:00
assert.ok(exists(".topic-list"), "The list of topics was rendered");
2018-06-15 23:03:24 +08:00
assert.ok(exists(".topic-list .topic-list-item"), "has topics");
assert.ok(!exists(".category-list"), "doesn't render subcategories");
assert.ok(
$("body.category-bug").length,
"has a custom css class for the category id on the body"
);
});
2014-07-31 01:27:14 +08:00
visit("/categories");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok($("body.navigation-categories").length, "has the body class");
assert.ok(
$("body.category-bug").length === 0,
"removes the custom category class"
);
assert.ok(exists(".category"), "has a list of categories");
assert.ok(
$("body.categories-list").length,
"has a custom class to indicate categories"
);
});
2014-08-01 06:07:04 +08:00
visit("/top");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(
$("body.categories-list").length === 0,
"removes the `categories-list` class"
);
assert.ok(exists(".topic-list .topic-list-item"), "has topics");
2014-08-01 06:07:04 +08:00
});
visit("/c/feature");
andThen(() => {
2017-06-15 01:57:58 +08:00
assert.ok(exists(".topic-list"), "The list of topics was rendered");
2018-06-15 23:03:24 +08:00
assert.ok(
exists(".category-boxes"),
"The list of subcategories were rendered with box style"
);
});
visit("/c/dev");
andThen(() => {
2017-06-15 01:57:58 +08:00
assert.ok(exists(".topic-list"), "The list of topics was rendered");
2018-06-15 23:03:24 +08:00
assert.ok(
exists(".category-boxes-with-topics"),
"The list of subcategories were rendered with box-with-featured-topics style"
);
assert.ok(
exists(".category-boxes-with-topics .featured-topics"),
"The featured topics are there too"
);
});
2018-06-15 23:03:24 +08:00
});