fixing frontend tests.

This commit is contained in:
Jason Kulatunga 2023-01-15 11:48:43 -08:00
parent b28bd3913f
commit b8ea3c8f97
3 changed files with 3 additions and 3 deletions

View File

@ -2,6 +2,6 @@ import { BinaryModel } from './binary-model';
describe('BinaryModel', () => {
it('should create an instance', () => {
expect(new BinaryModel()).toBeTruthy();
expect(new BinaryModel({})).toBeTruthy();
});
});

View File

@ -2,6 +2,6 @@ import { CompositionModel } from './composition-model';
describe('CompositionModel', () => {
it('should create an instance', () => {
expect(new CompositionModel()).toBeTruthy();
expect(new CompositionModel({})).toBeTruthy();
});
});

View File

@ -2,6 +2,6 @@ import { MedicationRequestModel } from './medication-request-model';
describe('MedicationRequestModel', () => {
it('should create an instance', () => {
expect(new MedicationRequestModel()).toBeTruthy();
expect(new MedicationRequestModel({})).toBeTruthy();
});
});