add smoke test for visiting categories

This commit is contained in:
Sam 2017-05-12 17:42:28 -04:00
parent 62d245dde3
commit 8491f8c48b
1 changed files with 8 additions and 0 deletions

View File

@ -143,6 +143,14 @@ var runTests = function() {
return $(".topic-list tbody tr").length;
});
execAsync("go to categories page", 500, function(){
window.location = "/categories";
});
test("can see categories on the page", function() {
return $('.category-list').length;
});
execAsync("navigate to 1st topic", 500, function() {
$(".main-link a.title:first").click();
});