mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 01:24:14 +08:00
24 lines
464 B
JavaScript
24 lines
464 B
JavaScript
/*global module:true test:true ok:true visit:true expect:true exists:true count:true */
|
|
|
|
module("List Topics", {
|
|
setup: function() {
|
|
Ember.run(Discourse, Discourse.advanceReadiness);
|
|
},
|
|
|
|
teardown: function() {
|
|
Discourse.reset();
|
|
}
|
|
});
|
|
|
|
test("/", function() {
|
|
expect(2);
|
|
|
|
visit("/").then(function() {
|
|
ok(exists("#topic-list"), "The list of topics was rendered");
|
|
ok(count('#topic-list .topic-list-item') > 0, "has topics");
|
|
});
|
|
|
|
});
|
|
|
|
|