decide.nolog.cz/tests/unit/services/encryption-test.js
2018-12-31 10:17:03 +01:00

12 lines
329 B
JavaScript

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Service | encryption', function(hooks) {
setupTest(hooks);
// Replace this with your real tests.
test('it exists', function(assert) {
let service = this.owner.lookup('service:encryption');
assert.ok(service);
});
});