Lines Matching refs:tree
25 const tree = renderer.create(<P>demo</P>);
26 expect(tree).toMatchSnapshot();
29 const tree = renderer.create(<B>demo</B>);
30 expect(tree).toMatchSnapshot();
33 const tree = renderer.create(<Span>demo</Span>);
34 expect(tree).toMatchSnapshot();
37 const tree = renderer.create(<Strong>demo</Strong>);
38 expect(tree).toMatchSnapshot();
41 const tree = renderer.create(<Del>demo</Del>);
42 expect(tree).toMatchSnapshot();
45 const tree = renderer.create(<S>demo</S>);
46 expect(tree).toMatchSnapshot();
49 const tree = renderer.create(<I>demo</I>);
50 expect(tree).toMatchSnapshot();
53 const tree = renderer.create(<EM>demo</EM>);
54 expect(tree).toMatchSnapshot();
57 const tree = renderer.create(<BR />);
58 expect(tree).toMatchSnapshot();
61 const tree = renderer.create(<Code />);
62 expect(tree).toMatchSnapshot();
65 const tree = renderer.create(<Q>demo</Q>);
66 expect(tree).toMatchSnapshot();
69 const tree = renderer.create(<BlockQuote />);
70 expect(tree).toMatchSnapshot();
73 const tree = renderer.create(<Mark />);
74 expect(tree).toMatchSnapshot();
77 const tree = renderer.create(<Time dateTime="2001-05-15T19:00">May 15</Time>);
78 expect(tree).toMatchSnapshot();
81 const tree = renderer.create(
88 expect(tree).toMatchSnapshot();