mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
import getServiceName from '@fleetbase/console/utils/get-service-name';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | get-service-name', function () {
|
|
// TODO: Replace this with your real tests.
|
|
test('it works', function (assert) {
|
|
let result = getServiceName();
|
|
assert.ok(result);
|
|
});
|
|
});
|