summaryrefslogtreecommitdiff
path: root/spec/frontend/groups/store/utils_spec.js
blob: 0961d4c72b48ecb0d889a973f3b72310c59ae768 (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
import { getGroupItemMicrodata } from '~/groups/store/utils';

describe('~/groups/store/utils', () => {
  describe('getGroupItemMetadata', () => {
    it('has default type', () => {
      expect(getGroupItemMicrodata({ type: 'silly' })).toMatchInlineSnapshot(`
        Object {
          "descriptionItemprop": "description",
          "imageItemprop": "image",
          "itemprop": "owns",
          "itemscope": true,
          "itemtype": "https://schema.org/Thing",
          "nameItemprop": "name",
        }
      `);
    });

    it('has group props', () => {
      expect(getGroupItemMicrodata({ type: 'group' })).toMatchInlineSnapshot(`
        Object {
          "descriptionItemprop": "description",
          "imageItemprop": "logo",
          "itemprop": "subOrganization",
          "itemscope": true,
          "itemtype": "https://schema.org/Organization",
          "nameItemprop": "name",
        }
      `);
    });

    it('has project props', () => {
      expect(getGroupItemMicrodata({ type: 'project' })).toMatchInlineSnapshot(`
        Object {
          "descriptionItemprop": "description",
          "imageItemprop": "image",
          "itemprop": "owns",
          "itemscope": true,
          "itemtype": "https://schema.org/SoftwareSourceCode",
          "nameItemprop": "name",
        }
      `);
    });
  });
});