mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-01-10 14:42:28 -05:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
integration("Unknown");
|
|
|
|
test("Unknown URL", () => {
|
|
expect(1);
|
|
visit("/url-that-doesn't-exist");
|
|
andThen(() => {
|
|
ok(exists(".page-not-found"), "The not found content is present");
|
|
});
|
|
});
|