Add an integration test for the new Ember 404 route

This commit is contained in:
Robin Ward
2014-04-29 15:29:01 -04:00
parent f50039b48b
commit 0528b408a3
3 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,8 @@
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");
});
});