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