refactor of universe and lazy loading fix contd.

This commit is contained in:
Ronald A. Richardson
2025-12-03 09:55:12 +08:00
parent cb7a2fb05b
commit 9653cfcaf0
28 changed files with 138 additions and 104 deletions

View File

@@ -0,0 +1,12 @@
import { module, test } from 'qunit';
import { setupTest } from '@fleetbase/console/tests/helpers';
module('Unit | Controller | virtual', function (hooks) {
setupTest(hooks);
// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let controller = this.owner.lookup('controller:virtual');
assert.ok(controller);
});
});