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