20.1.28-20.1.28-20-1-pnp-spb-mb.1.37 • Published 4 years ago

web-modules-test v20.1.28-20.1.28-20-1-pnp-spb-mb.1.37

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Web Modules Test

Export enzyme(https://github.com/airbnb/enzyme).

Example:

import React from 'react';
import {shallow, mount, render} from 'web-modules-test';

describe('Component name', () => {
    it('does stuff', () => {
        const wrapper = mount(<Component testProps="test"/>);
        expect(wrapper.find(ChildComponent)).toHaveLength(1);
        expect(wrapper.find(ChildComponent).props().testProps).toEqual("test");
    });
});