discourse/test/javascripts/integration/unknown-test.js.es6

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");
});
});