This commit is contained in:
shamoon 2024-04-21 09:41:44 -07:00
parent ac56d46761
commit 0c0eeafd5c

View File

@ -343,4 +343,13 @@ describe('SavedViewWidgetComponent', () => {
'Storage path' 'Storage path'
) )
}) })
it('should get correct column title for custom field', () => {
expect(
component.getColumnTitle((DisplayField.CUSTOM_FIELD + 11) as any)
).toEqual('Custom Field 11')
expect(
component.getColumnTitle((DisplayField.CUSTOM_FIELD + 15) as any)
).toEqual('Custom Field 15')
})
}) })