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

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

exports[`SplitButton renders actionItems 1`] = `
<gl-dropdown-stub
  menu-class="dropdown-menu-selectable "
  split="true"
  text="professor"
  variant="secondary"
>
  <gl-dropdown-item-stub
    active="true"
    active-class="is-active"
  >
    <strong>
      professor
    </strong>
     
    <div>
      very symphonic
    </div>
  </gl-dropdown-item-stub>
   
  <gl-dropdown-divider-stub />
  <gl-dropdown-item-stub
    active-class="is-active"
  >
    <strong>
      captain
    </strong>
     
    <div>
      warp drive
    </div>
  </gl-dropdown-item-stub>
   
  <!---->
</gl-dropdown-stub>
`;