We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7f2277 commit 4e66089Copy full SHA for 4e66089
test/globalStyles.test.js
@@ -55,7 +55,7 @@ describe('Comp:', () => {
55
<Comp propsTest children={<div className="inner-test" />} />
56
)
57
expect(wrapper.type()).toBe('div')
58
- expect(wrapper.prop('className')).toEqual('inner-test props-test')
+ expect(wrapper.prop('className')).toEqual('props-test inner-test')
59
})
60
61
test('should merge style', () => {
@@ -85,7 +85,7 @@ describe('createElement', () => {
85
</Tester.Comp>
86
87
expect(wrapper.prop('className')).toEqual(
88
- 'inner-test tester tester-props-test'
+ 'tester tester-props-test inner-test'
89
90
91
0 commit comments