open-consul/ui/packages/consul-ui/tests/unit/mixins/role/as-many-test.js
Ronald 6bcb98ea71
Add UI copyright headers files (#16614)
* Add copyright headers to UI files

* Ensure copywrite file ignores external libs
2023-03-14 09:18:55 -04:00

18 lines
493 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import EmberObject from '@ember/object';
import RoleAsManyMixin from 'consul-ui/mixins/role/as-many';
import { module, test } from 'qunit';
module('Unit | Mixin | role/as many', function () {
// Replace this with your real tests.
test('it works', function (assert) {
let RoleAsManyObject = EmberObject.extend(RoleAsManyMixin);
let subject = RoleAsManyObject.create();
assert.ok(subject);
});
});