fixing frontend tests.
This commit is contained in:
parent
b28bd3913f
commit
b8ea3c8f97
|
@ -2,6 +2,6 @@ import { BinaryModel } from './binary-model';
|
||||||
|
|
||||||
describe('BinaryModel', () => {
|
describe('BinaryModel', () => {
|
||||||
it('should create an instance', () => {
|
it('should create an instance', () => {
|
||||||
expect(new BinaryModel()).toBeTruthy();
|
expect(new BinaryModel({})).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -2,6 +2,6 @@ import { CompositionModel } from './composition-model';
|
||||||
|
|
||||||
describe('CompositionModel', () => {
|
describe('CompositionModel', () => {
|
||||||
it('should create an instance', () => {
|
it('should create an instance', () => {
|
||||||
expect(new CompositionModel()).toBeTruthy();
|
expect(new CompositionModel({})).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -2,6 +2,6 @@ import { MedicationRequestModel } from './medication-request-model';
|
||||||
|
|
||||||
describe('MedicationRequestModel', () => {
|
describe('MedicationRequestModel', () => {
|
||||||
it('should create an instance', () => {
|
it('should create an instance', () => {
|
||||||
expect(new MedicationRequestModel()).toBeTruthy();
|
expect(new MedicationRequestModel({})).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue