8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import { InputModel } from './input.model';
|
|
|
|
describe('InputModel', () => {
|
|
it('should create an instance', () => {
|
|
expect(new InputModel()).toBeTruthy();
|
|
});
|
|
});
|