2018-03-30 15:30:30 -04:00
|
|
|
import {expect} from 'chai';
|
2025-08-17 11:43:29 +02:00
|
|
|
import {UserRoles} from '../../../src/common/entities/UserDTO';
|
2018-02-03 19:50:42 -05:00
|
|
|
|
|
|
|
|
describe('UserDTO', () => {
|
2025-08-17 11:43:29 +02:00
|
|
|
it('should expose UserRoles enum', () => {
|
|
|
|
|
expect(UserRoles.Admin).to.be.a('number');
|
2018-02-03 19:50:42 -05:00
|
|
|
});
|
|
|
|
|
});
|