decide.nolog.cz/tests/unit/services/encryption-test.js

13 lines
329 B
JavaScript
Raw Normal View History

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