register-test.js 271 B

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