import { module, test } from 'qunit'; import { setupTest } from '@fleetbase/console/tests/helpers'; module('Unit | Transform | array', function (hooks) { setupTest(hooks); // Replace this with your real tests. test('it exists', function (assert) { let transform = this.owner.lookup('transform:array'); assert.ok(transform); }); });