mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
12 lines
268 B
JavaScript
12 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");
|
|
});
|
|
|
|
});
|