Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new_ready_to_merge_spec.js.snap « __snapshots__ « states « components « vue_mr_widget « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6c36764c41c478a6a84e003aaa78119a1c86a6b (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`New ready to merge state component renders permission text if canMerge (false) is false 1`] = `
<div
  class="mr-widget-body media"
>
  <status-icon-stub
    status="success"
  />
   
  <p
    class="media-body gl-m-0! gl-font-weight-bold"
  >
    
      Ready to merge by members who can write to the target branch.
    
  </p>
</div>
`;

exports[`New ready to merge state component renders permission text if canMerge (true) is false 1`] = `
<div
  class="mr-widget-body media"
>
  <status-icon-stub
    status="success"
  />
   
  <p
    class="media-body gl-m-0! gl-font-weight-bold"
  >
    
      Ready to merge!
    
  </p>
</div>
`;