summaryrefslogtreecommitdiff
path: root/spec/frontend/issue_show/store_spec.js
blob: b7fd70bf00eadda9ea9f0f64a7e4ead9d183ff18 (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
import Store from '~/issue_show/stores';
import updateDescription from '~/issue_show/utils/update_description';

jest.mock('~/issue_show/utils/update_description');

describe('Store', () => {
  let store;

  beforeEach(() => {
    store = new Store({
      descriptionHtml: '<p>This is a description</p>',
    });
  });

  describe('updateState', () => {
    beforeEach(() => {
      document.body.innerHTML = `
            <div class="detail-page-description content-block">
              <details open>
                <summary>One</summary>
              </details>
              <details>
                <summary>Two</summary>
              </details>
            </div>
          `;
    });

    afterEach(() => {
      document.getElementsByTagName('html')[0].innerHTML = '';
    });

    it('calls updateDetailsState', () => {
      store.updateState({ description: '' });

      expect(updateDescription).toHaveBeenCalledTimes(1);
    });
  });
});