blob: cecfb425ab7a06a2a09f86dc274e4c8a63bb0a74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Verify LoopSvg Test the render method 1`] = `
<styled.div
dangerouslySetInnerHTML={
Object {
"__html": "<svg><text x=\\"20\\" y=\\"40\\">No LOOP (SVG)</text></svg>",
}
}
onClick={[Function]}
/>
`;
exports[`Verify LoopSvg Test the render method no loopName 1`] = `
<styled.div
dangerouslySetInnerHTML={
Object {
"__html": "<svg><text x=\\"20\\" y=\\"40\\">No LOOP (SVG)</text></svg>",
}
}
onClick={[Function]}
/>
`;
exports[`Verify LoopSvg Test the render method svg not empty 1`] = `
<styled.div
dangerouslySetInnerHTML={
Object {
"__html": "<svg><text test</text></svg>",
}
}
onClick={[Function]}
/>
`;
|