8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
import { Role } from './role';
|
|
|
|
describe('Role', () => {
|
|
it('should create an instance', () => {
|
|
expect(new Role()).toBeTruthy();
|
|
});
|
|
});
|