GithubHelp home page GithubHelp logo

aleks-zah / enzyme-react-intl Goto Github PK

View Code? Open in Web Editor NEW

This project forked from joetidee/enzyme-react-intl

0.0 2.0 0.0 962 KB

A complimentary wrapper function for use with Enzyme, when testing React components that rely on react-intl

License: MIT License

JavaScript 100.00%

enzyme-react-intl's Introduction

enzyme-react-intl

Enables you to test React components, using Enzyme, where those components rely on react-intl. If you were to test a component that used react-intl, using Enzyme's mount and shallow methods, then your tests would throw errors. This package enables you to test your React components using the same react-intl language files that your application would ordinarily use in production. This improves the reliability of your React component tests.

Installation

To install this package in your project run the following:

npm i enzyme-react-intl --save-dev

Peer npm package dependencies

The following npm packages must also be installed as development dependencies in order to use enzyme-react-intl:

npm i react --save-dev
npm i react-dom --save-dev
npm i enzyme --save-dev

Example of usage (testing a React component)

As you can see below, you can test components as per normal. Where you would normally use mount and shallow methods from Enzyme, you simply substitute these with mountWithIntl and shallowWithIntl respectively.

import React from 'react';
import { mountWithIntl, shallowWithIntl, loadTranslation } from 'enzyme-react-intl';
import chai, { expect } from 'chai';
import chaiEnzyme from 'chai-enzyme';

import MyComponent from '../components/MyComponent.jsx';

chai.use(chaiEnzyme());

// Load in the desired react-intl translation file.
loadTranslation("./src/client/i18n/en-GB.i18n.json");

describe('<MyComponent />', () => {
    it('renders a name input field', () => {
        const wrapper = mountWithIntl(<MyComponent />);
        expect(wrapper.find('[name="name"]')).to.have.length(1);
    });
});

Note: loadTranslation requires a path from the project root.

Example using a translations object

This is helpful for custom module resolvers in Jest and aliases with Webpack.

import React from 'react';
import { mountWithIntl, shallowWithIntl, loadTranslationObject } from 'enzyme-react-intl';
import chai, { expect } from 'chai';
import chaiEnzyme from 'chai-enzyme';

import MyComponent from '../components/MyComponent.jsx';
import translations from "../translations/en-GB.il8n.json"

chai.use(chaiEnzyme());

// Load in the desired react-intl translation file.
loadTranslationObject(translations);

describe('<MyComponent />', () => {
    it('renders a name input field', () => {
        const wrapper = mountWithIntl(<MyComponent />);
        expect(wrapper.find('[name="name"]')).to.have.length(1);
    });
});

enzyme-react-intl's People

Contributors

davemackintosh avatar eightypop avatar formatlos avatar joetidee avatar jolyon2000 avatar vebaspect avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.