Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 696 Bytes

mocha.md

File metadata and controls

29 lines (19 loc) · 696 Bytes

Using Enzyme with Mocha

Enzyme was originally designed to work with Mocha, so getting it up and running with Mocha should be no problem at all. Simply install it and start using it:

npm i --save-dev enzyme
import React from 'react';
import { mount, shallow } from 'enzyme';

describe('<Foo />', () => {

  it('calls componentDidMount', () => {
    const wrapper = mount(<Foo />);
    expect(Foo.prototype.componentDidMount.calledOnce).to.equal(true);
  });
  
});

Example Projects