mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 00:54:16 +08:00
15 lines
244 B
JavaScript
15 lines
244 B
JavaScript
integration("List Topics");
|
|
|
|
test("/", function() {
|
|
|
|
visit("/").then(function() {
|
|
expect(2);
|
|
|
|
ok(exists("#topic-list"), "The list of topics was rendered");
|
|
ok(count('#topic-list .topic-list-item') > 0, "has topics");
|
|
});
|
|
|
|
});
|
|
|
|
|