Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 578 Bytes

hasClass.md

File metadata and controls

27 lines (14 loc) · 578 Bytes

.hasClass(className) => Boolean

Returns whether or not the wrapped node has a className prop including the passed in class name. It must be a single-node wrapper.

Arguments

  1. className (String): A single class name.

Returns

Boolean: whether or not the wrapped node has the class.

Example

const wrapper = mount(<MyComponent />);
expect(wrapper.find('.my-button').hasClass('disabled')).to.equal(true);

Common Gotchas

  • .hasClass() expects a class name, NOT a CSS selector. .hasClass('.foo') should be .hasClass('foo')