mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
|
integration("Unknown");
|
||
|
|
||
|
test("Unknown URL", function() {
|
||
|
expect(1);
|
||
|
visit("/url-that-doesn't-exist").then(function() {
|
||
|
ok(exists(".page-not-found"), "The not found content is present");
|
||
|
});
|
||
|
});
|