summaryrefslogtreecommitdiff
path: root/spec/frontend/__mocks__/@toast-ui/vue-editor/index.js
blob: 9fee8e18d266fcb67710834173ef3ff209aa59a3 (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
export const Editor = {
  props: {
    initialValue: {
      type: String,
      required: true,
    },
    options: {
      type: Object,
    },
    initialEditType: {
      type: String,
    },
    height: {
      type: String,
    },
    previewStyle: {
      type: String,
    },
  },
  created() {
    const mockEditorApi = {
      eventManager: {
        addEventType: jest.fn(),
        listen: jest.fn(),
        removeEventHandler: jest.fn(),
      },
    };

    this.$emit('load', mockEditorApi);
  },
  render(h) {
    return h('div');
  },
};

export const Viewer = {
  render(h) {
    return h('div');
  },
};