forked from Happy-Coding-Clans/vue-easytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathve-table-header-fixed.spec.js
115 lines (107 loc) · 3.02 KB
/
ve-table-header-fixed.spec.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import { mount } from "@vue/test-utils";
import veTable from "@/ve-table";
describe("veTable header fixed", () => {
const TABLE_DATA = [
{
rowkey: 0,
name: "John",
date: "1900-05-20",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Shanghai",
},
{
rowkey: 1,
name: "Dickerson",
date: "1910-06-20",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Beijing",
},
{
rowkey: 2,
name: "Larsen",
date: "2000-07-20",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Chongqing",
},
{
rowkey: 3,
name: "Geneva",
date: "2010-08-20",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Xiamen",
},
{
rowkey: 4,
name: "Jami",
date: "2020-09-20",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Shenzhen",
},
{
rowkey: 5,
name: "Jami2",
date: "2020-09-10",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Shenzhen",
},
];
const TABLE_COLUMNS = [
{
field: "name",
key: "a",
title: "Name",
align: "center",
},
{
field: "date",
key: "b",
title: "Date",
align: "left",
},
{
field: "hobby",
key: "c",
title: "Hobby",
align: "center",
},
{ field: "address", key: "d", title: "Address", align: "left" },
];
it("render", () => {
const wrapper = mount(veTable, {
propsData: {
maxHeight: 200,
fixedHeader: true,
columns: TABLE_COLUMNS,
tableData: TABLE_DATA,
rowKeyFieldName: "rowkey",
},
});
expect(wrapper.html()).toMatchSnapshot();
});
it("maxHeight props", () => {
const wrapper = mount(veTable, {
propsData: {
maxHeight: 200,
fixedHeader: true,
columns: TABLE_COLUMNS,
tableData: TABLE_DATA,
rowKeyFieldName: "rowkey",
},
});
expect(
wrapper.find(".ve-table-container").attributes("style"),
).toContain("max-height: 200px;");
});
it("fixedHeader props", () => {
const wrapper = mount(veTable, {
propsData: {
maxHeight: 200,
fixedHeader: true,
columns: TABLE_COLUMNS,
tableData: TABLE_DATA,
rowKeyFieldName: "rowkey",
},
});
expect(wrapper.find(".ve-table-fixed-header").exists()).toBe(true);
});
});