This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/test/javascripts/integration/topic-test.js.es6
T
Robin Ward b8bfbcb3cb ES6: Tests
2014-07-31 13:25:39 -04:00

12 lines
278 B
JavaScript

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