mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
13 lines
372 B
JavaScript
13 lines
372 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from '@fleetbase/console/tests/helpers';
|
|
|
|
module('Unit | Service | dashboard', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
// TODO: Replace this with your real tests.
|
|
test('it exists', function (assert) {
|
|
let service = this.owner.lookup('service:dashboard');
|
|
assert.ok(service);
|
|
});
|
|
});
|