forked from weui/react-weui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon.js
65 lines (56 loc) · 1.64 KB
/
icon.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
/**
* Created by jf on 15/12/9.
*/
"use strict";
import React from 'react';
import { shallow } from 'enzyme';
import assert from 'assert';
import WeUI from '../src/index';
const {Icon} = WeUI;
describe('<Icon>', ()=> {
[
'success',
'success_circle',
'success_no_circle',
'safe_success',
'safe_warn',
'info',
'waiting',
'waiting_circle',
'circle',
'warn',
'download',
'info_circle',
'cancel'
].map((value) => {
['small', 'large'].map((size) => {
describe(`<Icon value="${value}"/>`, ()=> {
const wrapper = shallow(
<Icon value={value} size={size}/>
);
it(`should render <Icon></Icon> component`, ()=> {
assert(wrapper.instance() instanceof Icon);
});
it(`should have class 'weui_icon_${value}'`, ()=> {
assert(wrapper.hasClass(`weui_icon_${value}`));
});
it(`should have 'weui_icon_msg' when size is large`, ()=> {
if (size === 'large') {
assert(wrapper.hasClass('weui_icon_msg'));
}
else {
assert(!wrapper.hasClass('weui_icon_msg'));
}
});
});
})
});
describe('loading', ()=> {
const wrapper = shallow(
<Icon value="loading"/>
);
it(`should have 'weui_loading' class name`, ()=> {
assert(wrapper.hasClass('weui_loading'));
});
})
});