open-nomad/ui/tests/helpers/setup-ability.js

10 lines
201 B
JavaScript

export default ability => hooks => {
hooks.beforeEach(function() {
this.ability = this.owner.lookup(`ability:${ability}`);
});
hooks.afterEach(function() {
delete this.ability;
});
};