diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascript/components/button.test.jsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/javascript/components/button.test.jsx b/spec/javascript/components/button.test.jsx index c32fae32a..e08671c01 100644 --- a/spec/javascript/components/button.test.jsx +++ b/spec/javascript/components/button.test.jsx @@ -51,14 +51,12 @@ describe('<Button />', () => { it('renders style="display: block; width: 100%;" if props.block given', () => { const wrapper = shallow(<Button block />); - expect(wrapper.find('button')).to.have.style('display', 'block'); - expect(wrapper.find('button')).to.have.style('width', '100%'); + expect(wrapper.find('button')).to.have.className('button--block'); }); it('renders style="display: inline-block; width: auto;" by default', () => { const wrapper = shallow(<Button />); - expect(wrapper.find('button')).to.have.style('display', 'inline-block'); - expect(wrapper.find('button')).to.have.style('width', 'auto'); + expect(wrapper.find('button')).to.not.have.className('button--block'); }); it('adds class "button-secondary" if props.secondary given', () => { |