| 22 | describe("executeItemsEqual", () => { |
| 23 | // interface for a non-primitive item value |
| 24 | interface IItemObject { |
| 25 | id: string; |
| 26 | label: string; |
| 27 | listOfValues: number[]; |
| 28 | nullField: null; |
| 29 | } |
| 30 | |
| 31 | const ITEM_OBJECT_A: IItemObject = { |
| 32 | id: "A", |
nothing calls this directly
no outgoing calls
no test coverage detected