Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

optional chaining operator jest testing

Newer to jest testing and reaching out to the community for direction. I need to write a jest test around the following block of code. The environment leverages jest, enzyme and chai. I have searched high and low for examples of optional chaining operator tests. Any examples or links anyone can provide to point me in the right direction.

<TableCell
   key={i}
   size={columnResizing?.columnWidths[column.id] || column.size}
/>
like image 368
Brown Avatar asked Oct 19 '25 15:10

Brown


1 Answers

To enable optional-chaining, install it, like this:

yarn add @babel/plugin-proposal-optional-chaining --dev

After installing it, you need to ensure it's registered within your babel plugins section, like so:

{
  "plugins": ["@babel/plugin-proposal-optional-chaining"]
}
like image 120
sglazkov Avatar answered Oct 21 '25 03:10

sglazkov