首页 > Web开发 > 详细

[React Testing] JSX error diffs -- expect-jsx library

时间:2016-01-05 06:59:56      阅读:264      评论:0      收藏:0      [点我收藏+]

When writing React component tests, it can be hard to decipher the error diffs of broken tests, since they are just the final objects that React uses under the hood. There are some nice libraries that let you extend your assertion library to show JSX diffs; in this lesson we will wire up one of these libraries to show how to debug JSX error diffs from your React tests. We will also show how narrowing down what you are testing helps to make the test error diffs easier to deal with.

NOTE: This lesson uses the expect-jsx package, but there are other options available for both expect and other assertion libraries.

 

import React from ‘react‘;
import expect from ‘expect‘;
import TestUtils from ‘react-addons-test-utils‘;
import expectJSX from ‘expect-jsx‘;
expect.extend(expectJSX);

const CoolComponent = ({greeting}) => {
    return (
        <div>
            <h1>Greeting</h1>
            <div>{greeting}</div>
        </div>
    );
};

describe(‘CoolComponent‘, ()=>{

    it(‘should render the actual component‘, ()=>{
        //Shallow Rendering
        const renderer = TestUtils.createRenderer();
        renderer.render(<CoolComponent greeting=‘hello world‘ />);
        const actual = renderer.getRenderOutput();
        const expected = <div>hello world</div>;
        expect(actual).toIncludeJSX(expected);
    });
});

 

---------------

expect-jsx:

  • expect(ReactComponent|JSX).toEqualJSX(ReactComponent|JSX)
  • expect(ReactComponent|JSX).toNotEqualJSX(ReactComponent|JSX)
  • expect(ReactComponent|JSX).toIncludeJSX(ReactComponent|JSX)
  • expect(ReactComponent|JSX).toNotIncludeJSX(ReactComponent|JSX)

[React Testing] JSX error diffs -- expect-jsx library

原文:http://www.cnblogs.com/Answer1215/p/5100892.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!