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

new_ready_to_merge_spec.js.snap « __snapshots__ « states « components « vue_merge_request_widget « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec0af7c8a7bbb349bd14fadaa6a2d5b18ca17039 (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
// 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="media mr-widget-body"
>
  <status-icon-stub
    status="success"
  />
  <p
    class="gl-font-weight-bold gl-mb-0! gl-mt-1 gl-text-gray-900! media-body"
  >
    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="media mr-widget-body"
>
  <status-icon-stub
    status="success"
  />
  <p
    class="gl-font-weight-bold gl-mb-0! gl-mt-1 gl-text-gray-900! media-body"
  >
    Ready to merge!
  </p>
</div>
`;