Wei Zhu
8 years ago
committed by
偏右
4 changed files with 24 additions and 3 deletions
@ -0,0 +1,19 @@ |
|||
import React from 'react'; |
|||
import { mount } from 'enzyme'; |
|||
import Breadcrumb from '../Breadcrumb'; |
|||
|
|||
describe('Breadcrumb', () => { |
|||
it('warns on non-Breadcrumb.Item children', () => { |
|||
const MyCom = () => <div>foo</div>; |
|||
spyOn(console, 'error'); |
|||
mount( |
|||
<Breadcrumb> |
|||
<MyCom /> |
|||
</Breadcrumb> |
|||
); |
|||
expect(console.error.calls.count()).toBe(1); |
|||
expect(console.error.calls.argsFor(0)[0]).toContain( |
|||
'Breadcrumb only accetps Breadcrumb.Item as it\'s children' |
|||
); |
|||
}); |
|||
}); |
Loading…
Reference in new issue