aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/loop_viewer/status/__snapshots__/LoopStatus.test.js.snap
blob: 73da5fff1af2c189e3487a7cb485af4aa47d9a3f (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Verify LoopStatus Test the render method 1`] = `
<styled.div>
  <label>
    Loop Status: 
    DESIGN
  </label>
  <div>
    <Styled(Component)
      hover={true}
      responsive={true}
      striped={true}
      variant={true}
    >
      <thead>
        <tr>
          <th>
            <span
              align="left"
            >
              Component Name
            </span>
          </th>
          <th>
            <span
              align="left"
            >
              Component State
            </span>
          </th>
          <th>
            <span
              align="right"
            >
              Description
            </span>
          </th>
        </tr>
      </thead>
      <tbody>
        <TableRow
          statusRow={
            Object {
              "componentName": "POLICY",
              "description": "The policies defined have NOT yet been created on the policy engine",
              "stateName": "NOT_SENT",
            }
          }
        />
        <TableRow
          statusRow={
            Object {
              "componentName": "DCAE",
              "description": "The DCAE blueprint has been found in the DCAE inventory but not yet instancianted for this loop",
              "stateName": "BLUEPRINT_DEPLOYED",
            }
          }
        />
      </tbody>
    </Styled(Component)>
  </div>
</styled.div>
`;