summaryrefslogtreecommitdiff
path: root/spec/frontend/static_site_editor/store/getters_spec.js
blob: 5793e3447843a957fcb68050ca0c98d1889af712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import createState from '~/static_site_editor/store/state';
import { contentChanged } from '~/static_site_editor/store/getters';
import { sourceContent as content } from '../mock_data';

describe('Static Site Editor Store getters', () => {
  describe('contentChanged', () => {
    it('returns true when content and originalContent are different', () => {
      const state = createState({ content, originalContent: 'something else' });

      expect(contentChanged(state)).toBe(true);
    });

    it('returns false when content and originalContent are the same', () => {
      const state = createState({ content, originalContent: content });

      expect(contentChanged(state)).toBe(false);
    });
  });
});