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
T
2014-04-29 15:29:13 -04:00

9 lines
205 B
JavaScript

integration("Unknown");
test("Unknown URL", function() {
expect(1);
visit("/url-that-doesn't-exist").then(function() {
ok(exists(".page-not-found"), "The not found content is present");
});
});