Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
modules-test.js 275 B
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';

module('Unit | Route | modules', function(hooks) {
  setupTest(hooks);

  test('it exists', function(assert) {
    let route = this.owner.lookup('route:modules');
    assert.ok(route);
  });
});