mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-04 05:17:09 +00:00
11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
import runtimeConfig from '@fleetbase/console/utils/runtime-config';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | runtime-config', function () {
|
|
// TODO: Replace this with your real tests.
|
|
test('it works', function (assert) {
|
|
let result = runtimeConfig();
|
|
assert.ok(result);
|
|
});
|
|
});
|