summaryrefslogtreecommitdiff
path: root/spec/frontend/members/components/table/__snapshots__/member_activity_spec.js.snap
blob: a0d9bae8a0b457fed21d1c08b29d540f27d18af4 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`MemberActivity with a member that does not have all of the fields renders \`User created\` field 1`] = `
<div>
  <!---->
   
  <div>
    <strong>
      Access granted:
    </strong>
     
    <span>
      
  Aug 06, 2020

    </span>
  </div>
   
  <!---->
</div>
`;

exports[`MemberActivity with a member that has all fields renders \`User created\`, \`Access granted\`, and \`Last activity\` fields 1`] = `
<div>
  <div>
    <strong>
      User created:
    </strong>
     
    <span>
      
  Mar 10, 2022

    </span>
  </div>
   
  <div>
    <strong>
      Access granted:
    </strong>
     
    <span>
      
  Jul 17, 2020

    </span>
  </div>
   
  <div>
    <strong>
      Last activity:
    </strong>
     
    <span>
      
  Mar 15, 2022

    </span>
  </div>
</div>
`;