mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-19 22:27:22 +00:00
- Fixed controller validation handling - Added microsoft365/graph mail driver - Improved password requirements (including breached password check) - Patched creating duplicate users by email in IAM - Patch env mapper - Vehicle/driver tracking API doesnt fire resource lifecycle events or log requests - only tracking events - Patched `<ModelCoordinatesInput />` component - Security patch on Storefront customers API - Styling updates on Storefront
13 lines
388 B
JavaScript
13 lines
388 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from '@fleetbase/console/tests/helpers';
|
|
|
|
module('Unit | Service | user-verification', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
// TODO: Replace this with your real tests.
|
|
test('it exists', function (assert) {
|
|
let service = this.owner.lookup('service:user-verification');
|
|
assert.ok(service);
|
|
});
|
|
});
|