(
testId: string,
extra: Record<string, unknown> = {},
)
| 20 | } as const; |
| 21 | |
| 22 | export const withHeaderTestId = ( |
| 23 | testId: string, |
| 24 | extra: Record<string, unknown> = {}, |
| 25 | ) => ({ |
| 26 | __testId: testId, |
| 27 | ...extra, |
| 28 | }); |
| 29 | |
| 30 | export function buildColumns(columns: ColumnData): ColumnData { |
| 31 | return columns.map(column => { |
no outgoing calls
no test coverage detected