mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
13 lines
380 B
JavaScript
13 lines
380 B
JavaScript
import { mount } from 'enzyme';
|
|
import React from 'react';
|
|
import TransButton from '../transButton';
|
|
|
|
describe('transButton component', () => {
|
|
it('disabled should update style', () => {
|
|
const wrapper = mount(<TransButton disabled />);
|
|
expect(wrapper.find('div').first().props().style).toEqual(
|
|
expect.objectContaining({ pointerEvents: 'none' }),
|
|
);
|
|
});
|
|
});
|