You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-11-27 22:38:10 +02:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import {expect} from 'chai';
|
|
import {UserRoles} from '../../../src/common/entities/UserDTO';
|
|
|
|
describe('UserDTO', () => {
|
|
it('should expose UserRoles enum', () => {
|
|
expect(UserRoles.Admin).to.be.a('number');
|
|
});
|
|
});
|