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.

application-test.js 331B

123456789101112
  1. import { module, test } from 'qunit';
  2. import { setupTest } from 'ember-qunit';
  3. module('Unit | Adapter | application', function(hooks) {
  4. setupTest(hooks);
  5. // Replace this with your real tests.
  6. test('it exists', function(assert) {
  7. let adapter = this.owner.lookup('adapter:application');
  8. assert.ok(adapter);
  9. });
  10. });