mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-02-24 18:07:06 +00:00
11 lines
352 B
JavaScript
11 lines
352 B
JavaScript
import routerRefreshPatch from '@fleetbase/console/utils/router-refresh-patch';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | router-refresh-patch', function () {
|
|
// TODO: Replace this with your real tests.
|
|
test('it works', function (assert) {
|
|
let result = routerRefreshPatch();
|
|
assert.ok(result);
|
|
});
|
|
});
|