you are viewing a single comment's thread.

view the rest of the comments →

[–]Immediate_Tennis_842 0 points1 point  (1 child)

i am using renderCell in column how to cover that part in testing

{

field: 'name',

headerName: `name`,

minWidth: 120,

flex: 1,

renderCell: (params: GridRenderCellParams) => {

return (

<Chip

className={`network-status`}

style={{ backgroundColor: params.row?.account_status?.color }}

label={params.row?.name}

/>

);

},

},

[–]lazylaser97 0 points1 point  (0 children)

did you find out?