summaryrefslogtreecommitdiff
path: root/spec/frontend/design_management/components/__snapshots__/design_presentation_spec.js.snap
blob: 560533891c9c1d50435b3a948061589edb70fccf (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Design management design presentation component currentCommentForm is equal to current annotation position when isAnnotating is true 1`] = `
<div
  class="gl-h-full gl-w-full gl-p-5 overflow-auto gl-relative"
>
  <div
    class="gl-h-full gl-w-full gl-display-flex gl-align-items-center gl-relative"
  >
    <design-image-stub
      image="test.jpg"
      name="test"
      scale="1"
    />
     
    <design-overlay-stub
      currentcommentform="[object Object]"
      dimensions="[object Object]"
      notes=""
      position="[object Object]"
    />
  </div>
</div>
`;

exports[`Design management design presentation component currentCommentForm is null when isAnnotating is false 1`] = `
<div
  class="gl-h-full gl-w-full gl-p-5 overflow-auto gl-relative"
>
  <div
    class="gl-h-full gl-w-full gl-display-flex gl-align-items-center gl-relative"
  >
    <design-image-stub
      image="test.jpg"
      name="test"
      scale="1"
    />
     
    <design-overlay-stub
      dimensions="[object Object]"
      notes=""
      position="[object Object]"
    />
  </div>
</div>
`;

exports[`Design management design presentation component currentCommentForm is null when isAnnotating is true but annotation position is falsey 1`] = `
<div
  class="gl-h-full gl-w-full gl-p-5 overflow-auto gl-relative"
>
  <div
    class="gl-h-full gl-w-full gl-display-flex gl-align-items-center gl-relative"
  >
    <design-image-stub
      image="test.jpg"
      name="test"
      scale="1"
    />
     
    <design-overlay-stub
      dimensions="[object Object]"
      notes=""
      position="[object Object]"
    />
  </div>
</div>
`;

exports[`Design management design presentation component renders empty state when no image provided 1`] = `
<div
  class="gl-h-full gl-w-full gl-p-5 overflow-auto gl-relative"
>
  <div
    class="gl-h-full gl-w-full gl-display-flex gl-align-items-center gl-relative"
  >
    <!---->
     
    <!---->
  </div>
</div>
`;

exports[`Design management design presentation component renders image and overlay when image provided 1`] = `
<div
  class="gl-h-full gl-w-full gl-p-5 overflow-auto gl-relative"
>
  <div
    class="gl-h-full gl-w-full gl-display-flex gl-align-items-center gl-relative"
  >
    <design-image-stub
      image="test.jpg"
      name="test"
      scale="1"
    />
     
    <design-overlay-stub
      dimensions="[object Object]"
      notes=""
      position="[object Object]"
    />
  </div>
</div>
`;