2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/test/javascripts/integration/view_topic_test.js

13 lines
267 B
JavaScript
Raw Normal View History

integration("View Topic");
test("View a Topic", function() {
visit("/t/internationalization-localization/280").then(function() {
expect(2);
ok(exists("#topic"), "The was rendered");
ok(exists("#topic .topic-post"), "The topic has posts");
});
});