-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathsimple.test.js
56 lines (47 loc) · 1.55 KB
/
simple.test.js
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
45
46
47
48
49
50
51
52
53
54
55
56
'use strict';
import { shallowMount } from '@vue/test-utils';
import { renderToString } from '@vue/server-test-utils';
const packPath = process.env.TEST_LIB ? '../lib/json-editor.min.js' : '../src/JsonEditor.vue';
const pack = require(packPath);
const JsonEditor = pack.default;
const schema = Object.freeze(require('./data/simple.json'));
const model = {
name: 'Yourtion',
lists: [ 'Promotion' ],
};
const model2 = {
name: 'YourtionGuo',
email: 'yourtion@gmail.com',
};
describe('Component', () => {
it('Mount', () => {
const wrapper = shallowMount(JsonEditor, {
propsData: { schema },
});
expect(wrapper.isVueInstance()).toBeTruthy();
});
it('Snapshot', () => {
const renderedString = renderToString(JsonEditor, {
propsData: { schema },
});
expect(renderedString).toMatchSnapshot();
});
describe('Mount with data and set data', () => {
const wrapper = shallowMount(JsonEditor, {
propsData: { schema, value: model },
});
const component = wrapper.vm;
expect(wrapper.isVueInstance()).toBeTruthy();
const form = component.$el.getElementsByTagName('form')[0];
const { name, lists, email } = form.elements;
it('get mounted data', () => {
expect(name.getAttribute('value')).toBe(model.name);
expect(lists.getAttribute('value')).toBe(model.lists[0]);
});
it('update value by setData', () => {
wrapper.setData({ value: model2 });
expect(email.getAttribute('value')).toBe(model2.email);
expect(name.getAttribute('value')).toBe(model2.name);
});
});
});