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

10 lines
211 B
Plaintext
Raw Normal View History

integration("Unknown");
test("Unknown URL", function() {
expect(1);
2014-07-31 01:27:14 +08:00
visit("/url-that-doesn't-exist");
andThen(function() {
ok(exists(".page-not-found"), "The not found content is present");
});
});