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