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