2015-04-06 14:14:00 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Unknown");
|
2014-04-29 15:29:01 -04:00
|
|
|
|
2018-07-19 10:40:12 -04:00
|
|
|
QUnit.test("Unknown URL", async assert => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.expect(1);
|
2018-07-19 10:40:12 -04:00
|
|
|
await visit("/url-that-doesn't-exist");
|
|
|
|
assert.ok(exists(".page-not-found"), "The not found content is present");
|
2014-04-29 15:29:01 -04:00
|
|
|
});
|