This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/test/javascripts/integration/unknown-test.js.es6

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