zoukankan      html  css  js  c++  java
  • [React Testing] JSX error diffs -- expect-jsx library

    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)
  • 相关阅读:
    2017上半年技术文章集合【Android】—184篇文章分类汇总
    一个高仿闲鱼键自定义数字键盘特效
    Android智能下拉刷新加载框架—看这些就够了
    深入了解Android蓝牙Bluetooth——《进阶篇》
    with和爬虫基础
    数据类型
    变量及注释
    计算机基础知识
    Markdown使用
    3732: Network
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5100892.html
Copyright © 2011-2022 走看看