This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/test/javascripts/integration/view_topic_test.js

13 lines
268 B
JavaScript

integration("View Topic");
test("Enter 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");
});
});