(overrides: Partial<LayoutItem> = {})
| 26 | |
| 27 | // Helper to create a basic layout item |
| 28 | function createItem(overrides: Partial<LayoutItem> = {}): LayoutItem { |
| 29 | return { |
| 30 | i: "test", |
| 31 | x: 0, |
| 32 | y: 0, |
| 33 | w: 2, |
| 34 | h: 2, |
| 35 | static: false, |
| 36 | moved: false, |
| 37 | ...overrides |
| 38 | }; |
| 39 | } |
| 40 | |
| 41 | // Helper to create a constraint context |
| 42 | function createContext( |
no outgoing calls
no test coverage detected
searching dependent graphs…