mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 17:33:44 +08:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
integration("View Topic");
|
|
|
|
test("Enter a Topic", function() {
|
|
expect(2);
|
|
|
|
visit("/t/internationalization-localization/280").then(function() {
|
|
ok(exists("#topic"), "The was rendered");
|
|
ok(exists("#topic .topic-post"), "The topic has posts");
|
|
});
|
|
});
|