Returns the type of the current node of this wrapper. If it's a composite component, this will be
the component constructor. If it's a native DOM node, it will be a string of the tag name. If it's null
, it will be null
.
Note: can only be called on a wrapper of a single node.
String|Function|null
: The type of the current node
function Foo() {
return <div />;
}
const wrapper = mount(<Foo />);
expect(wrapper.type()).to.equal('div');
function Foo() {
return (
<div>
<button type="button" className="btn">Button</button>
</div>
);
}
const wrapper = mount(<Foo />);
expect(wrapper.find('.btn').type()).to.equal('button');
function Foo() {
return <Bar />;
}
const wrapper = mount(<Foo />);
expect(wrapper.type()).to.equal(Bar);
function Null() {
return null;
}
const wrapper = mount(<Null />);
expect(wrapper.type()).to.equal(null);