14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
|
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'ember-qunit';
|
||
|
|
||
|
module('Unit | Model | oidc-provider', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it exists', function(assert) {
|
||
|
let store = this.owner.lookup('service:store');
|
||
|
let model = store.createRecord('oidc-provider', {});
|
||
|
assert.ok(model);
|
||
|
});
|
||
|
});
|