fix BulkAccessSettingsComponent test

This commit is contained in:
Enea Jahollari
2023-06-01 16:04:12 +02:00
parent 8b636f533b
commit 72b089c0cd

View File

@@ -70,6 +70,7 @@ describe('BulkAccessSettingsComponent', () => {
const expectedValue = mockFormState; const expectedValue = mockFormState;
(component.controlForm as any).getFormValue.and.returnValue(mockFormState); (component.controlForm as any).getFormValue.and.returnValue(mockFormState);
const actualValue = component.getValue(); const actualValue = component.getValue();
// @ts-ignore
expect(actualValue).toEqual(expectedValue); expect(actualValue).toEqual(expectedValue);
}); });