mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Unknown");
|
|
|
|
test("Unknown URL", () => {
|
|
expect(1);
|
|
visit("/url-that-doesn't-exist");
|
|
andThen(() => {
|
|
ok(exists(".page-not-found"), "The not found content is present");
|
|
});
|
|
});
|