mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 07:03:43 +08:00
10 lines
201 B
JavaScript
10 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");
|
|
});
|
|
});
|