summaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/loop_viewer/svg/__snapshots__/LoopSvg.test.js.snap
blob: e05f1c794127714e3502c0ddadc4c672da18e3b8 (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.svg
  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.svg
  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.svg
  dangerouslySetInnerHTML={
    Object {
      "__html": "<svg><text test</text></svg>",
    }
  }
  onClick={[Function]}
/>
`;