2014-07-31 01:27:14 +08:00
|
|
|
integration("Topic Discovery");
|
2013-06-14 03:08:42 +08:00
|
|
|
|
2014-07-31 01:27:14 +08:00
|
|
|
test("Visit Discovery Pages", function() {
|
|
|
|
visit("/");
|
|
|
|
andThen(function() {
|
2014-07-30 05:38:36 +08:00
|
|
|
ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
ok(exists('.topic-list .topic-list-item'), "has topics");
|
2013-06-14 03:08:42 +08:00
|
|
|
});
|
2013-07-05 04:19:59 +08:00
|
|
|
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/category/bug");
|
|
|
|
andThen(function() {
|
2014-07-30 05:38:36 +08:00
|
|
|
ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
ok(exists('.topic-list .topic-list-item'), "has topics");
|
2013-07-05 04:19:59 +08:00
|
|
|
});
|
2013-06-21 03:02:02 +08:00
|
|
|
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/categories");
|
|
|
|
andThen(function() {
|
2013-12-12 04:23:41 +08:00
|
|
|
ok(exists('.category'), "has a list of categories");
|
2013-06-21 03:02:02 +08:00
|
|
|
});
|
2014-08-01 06:07:04 +08:00
|
|
|
|
|
|
|
visit("/top");
|
|
|
|
andThen(function() {
|
2014-08-29 02:34:31 +08:00
|
|
|
ok(exists('.topic-list .topic-list-item'), "has topics");
|
2014-08-01 06:07:04 +08:00
|
|
|
});
|
2013-06-21 03:02:02 +08:00
|
|
|
});
|