2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/test/javascripts/integration/unknown_test.js

9 lines
205 B
JavaScript
Raw Normal View History

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