import React from 'react'; import { render } from '@testing-library/react'; import { RBACProvider } from '..'; import ComponentWithHOC from '../sandbox/components/ComponentWithHOC'; describe('withRBAC', () => { it('Should display component when permissions valid', () => { render( ); }); it('Should hide component when permissions not valid', () => { render( ); }); });