Lines Matching refs:tree
9 const tree = renderer.create(<Table />);
10 expect(tree).toMatchSnapshot();
13 const tree = renderer.create(<THead />);
14 expect(tree).toMatchSnapshot();
17 const tree = renderer.create(<TBody />);
18 expect(tree).toMatchSnapshot();
21 const tree = renderer.create(<TFoot />);
22 expect(tree).toMatchSnapshot();
25 const tree = renderer.create(<TH>Header</TH>);
26 expect(tree).toMatchSnapshot();
29 const tree = renderer.create(<TR />);
30 expect(tree).toMatchSnapshot();
33 const tree = renderer.create(<TD>Column</TD>);
34 expect(tree).toMatchSnapshot();
37 const tree = renderer.create(<Caption>Caption</Caption>);
38 expect(tree).toMatchSnapshot();