2015-04-06 14:14:00 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Topic Discovery");
|
2013-06-13 15:08:42 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Visit Discovery Pages", assert => {
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.navigation-topics').length, "has the default navigation");
|
|
|
|
assert.ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
assert.ok(exists('.topic-list .topic-list-item'), "has topics");
|
2013-06-13 15:08:42 -04:00
|
|
|
});
|
2013-07-04 16:19:59 -04:00
|
|
|
|
2014-10-16 12:15:31 -04:00
|
|
|
visit("/c/bug");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
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");
|
2013-07-04 16:19:59 -04:00
|
|
|
});
|
2013-06-20 15:02:02 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/categories");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04: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");
|
2013-06-20 15:02:02 -04:00
|
|
|
});
|
2014-07-31 18:07:04 -04:00
|
|
|
|
|
|
|
visit("/top");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.categories-list').length === 0, "removes the `categories-list` class");
|
|
|
|
assert.ok(exists('.topic-list .topic-list-item'), "has topics");
|
2014-07-31 18:07:04 -04:00
|
|
|
});
|
2017-03-08 11:31:30 -05:00
|
|
|
|
|
|
|
visit("/c/feature");
|
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
assert.ok(exists(".category-boxes"), "The list of subcategories were rendered with box style");
|
2017-03-08 11:31:30 -05:00
|
|
|
});
|
2017-03-15 17:34:38 -04:00
|
|
|
|
|
|
|
visit("/c/dev");
|
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
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");
|
2017-03-15 17:34:38 -04:00
|
|
|
});
|
2017-06-14 13:57:58 -04:00
|
|
|
});
|