10

lazy我必须使用新的 React API (16.6)导入组件。

import React, {PureComponent, lazy} from 'react';

const Component1 = lazy(() => import('./Component1'));
const Component2 = lazy(() => import('./Component2'));

class CustomComponent extends PureComponent {
  ...
  render() {

  return (
    <div>
      <Component1 />
      <Component2 />
    </div>
  );
 }
}

在我的测试中,我正在制作这个组件的快照。这是一个非常简单的测试:

import { create } from 'react-test-renderer';

const tree = await create(<CustomComponent />).toJSON();

expect(tree).toMatchSnapshot();

在日志中,测试失败并出现以下错误:

A React component suspended while rendering, but no fallback UI was specified.

Add a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.

我必须用 包装每个测试套件<Suspense>...吗?

it('should show the component', async () => {
  const component = await create(
    <React.Suspense fallback={<div>loading</div>}>
     <CustomComponent /> 
    </React.Suspense> 
  ); 
  const tree = component.toJSON(); 

  expect(tree).toMatchSnapshot(); 

};

如果我这样做,我只会在快照中看到fallback组件。

+ Array [ + <div> + loading + </div>, + ]

那么,最好的方法是什么?

4

4 回答 4

13

我必须用 包装每个测试套件<Suspense>吗?

是的,该Suspense组件是延迟加载子组件所必需的,特别是在延迟组件可用时提供回退和协调。

导出Component1Component2输入,CustomComponent以便可以在测试中导入它们。

import React, {PureComponent, lazy} from 'react';

export const Component1 = lazy(() => import('./Component1'));
export const Component2 = lazy(() => import('./Component2'));

export default class CustomComponent extends PureComponent {
  //...
}

请记住,延迟加载的组件类似于 Promise。在测试中导入它们,并等待它们解决,然后再检查快照是否匹配。

import { create } from 'react-test-renderer';
import React, {Suspense} from 'react';
import CustomComponent, {Component1, Component2} from './LazyComponent';

describe('CustomComponent', () => {
  it('rendered lazily', async()=> {
    const root = create(
      <Suspense fallback={<div>loading...</div>}>
        <CustomComponent/>
      </Suspense>
    );

    await Component1;
    await Component2;
    expect(root).toMatchSnapshot();
  })
})
于 2018-11-11T13:51:02.733 回答
4

根据github 中的此评论,您可以使用 Jest 模拟惰性组件以返回实际组件,尽管您需要将惰性语句移动并导出到它们自己的文件中才能使其工作。

// LazyComponent1.ts
import { lazy } from 'react';

export default lazy(() => import('./Component1'));
// CustomComponent.tsx
import React, { PureComponent } from 'react';
import Component1 from './LazyComponent1';
import Component2 from './LazyComponent2';

class CustomComponent extends PureComponent {
  ...
  render() {

  return (
    <div>
      <Component1 />
      <Component2 />
    </div>
  );
 }
}
// CustomComponent.spec.tsx
import React, { Suspense } from 'react';
import { create } from 'react-test-renderer';
import CustomComponent from './CustomComponent';

jest.mock('./LazyComponent1', () => require('./Component1'));
jest.mock('./LazyComponent2', () => require('./Component2'));

describe('CustomComponent', () => {
  it('should show the component', () => {
    const component = await create(
      <Suspense fallback={<div>loading</div>}>
       <CustomComponent /> 
      </Suspense> 
    ); 
    const tree = component.toJSON(); 

    expect(tree).toMatchSnapshot(); 
  });
});
于 2019-09-12T12:21:35.023 回答
3

使用 Enzyme 和 mount 这对我有用。它不需要更改任何导出。

// wait for lazy components
await import('./Component1')
await import('./Component2')

jest.runOnlyPendingTimers()
wrapper.update()

感谢Andrew Ferk对已接受答案的评论。

于 2021-01-10T04:35:57.213 回答
2

我有一个类似的问题,我想对嵌套组件进行快照测试,其中一个是延迟加载的。嵌套看起来像这样:

SalesContainer -> SalesAreaCard -> SalesCard -> AreaMap

SalesContainer顶级组件在哪里。-componentAreaMap是通过SalesCard使用 React lazy 和 Suspense 进行延迟加载的。对于大多数开发人员来说,测试在本地通过并AreaMap在快照中呈现。但是测试总是在 Jenkins CI 中惨遭失败,AreaMap从未渲染过。至少可以说是片状的。

为了使测试通过,我在测试中添加了魔法线await testRenderer.getInstance().loadingPromise;。这是一个测试示例:

import React from 'react';
import renderer from 'react-test-renderer';
import wait from 'waait';
import SalesContainer from './index';

describe('<SalesContainer />', () => {
it('should render correctly', async () => {
    const testRenderer = renderer.create(
      <SalesContainer />
    );
    await wait(0);
    await testRenderer.getInstance().loadingPromise;
    expect(testRenderer).toMatchSnapshot();
  });
});
于 2019-07-05T08:39:19.680 回答