not-found-test.js 276 B

1234567891011121314
  1. import {
  2. moduleFor,
  3. test
  4. } from 'ember-qunit';
  5. moduleFor('route:not-found', 'NotFoundRoute', {
  6. // Specify the other units that are required for this test.
  7. // needs: ['controller:foo']
  8. });
  9. test('it exists', function() {
  10. var route = this.subject();
  11. ok(route);
  12. });