You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

zettel-test.js 273B

1234567891011
  1. import { module, test } from 'qunit';
  2. import { setupTest } from 'ember-qunit';
  3. module('Unit | Route | zettel', function(hooks) {
  4. setupTest(hooks);
  5. test('it exists', function(assert) {
  6. let route = this.owner.lookup('route:zettel');
  7. assert.ok(route);
  8. });
  9. });