Files
nomad/ui/tests/helpers/setup-ability.js
2023-08-10 17:27:29 -05:00

17 lines
356 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
export default (ability) => (hooks) => {
hooks.beforeEach(function () {
this.ability = this.owner.lookup(`ability:${ability}`);
this.can = this.owner.lookup('service:can');
});
hooks.afterEach(function () {
delete this.ability;
delete this.can;
});
};