mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
10 lines
201 B
JavaScript
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;
|
|
});
|
|
};
|