mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from '@fleetbase/console/tests/helpers';
|
|
|
|
module('Unit | Transform | object', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function (assert) {
|
|
let transform = this.owner.lookup('transform:object');
|
|
assert.ok(transform);
|
|
});
|
|
});
|