Files
Fleetbase-Mirror-Repo/console/tests/unit/services/dashboard-test.js
2024-02-01 18:01:46 +08:00

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);
});
});