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