Files
cmc-frontend/src/app/model/user.spec.ts
2024-09-28 20:48:18 +05:30

8 lines
144 B
TypeScript

import {User} from './user';
describe('User', () => {
it('should create an instance', () => {
expect(new User()).toBeTruthy();
});
});