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

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