summaryrefslogtreecommitdiff
path: root/spec/javascripts/notes/components/issue_placeholder_note_spec.js
blob: 64d4ed42dfa7e7c24e5fc34d5c134ebad053db26 (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
describe('issue placeholder system note component', () => {
  beforeEach(() => {
  });

  describe('user information', () => {
    it('should render user avatar with link', () => {

    });
  });

  describe('note content', () => {
    it('should render note header information', () => {

    });

    it('should render note body', () => {

    });

    it('should render system note placeholder with markdown', () => {

    });

    it('should render emojis', () => {

    });

    it('should render slash commands', () => {

    });
  });
});