我是测试 React/Typescript 应用程序的新手。
命令(别名react-scripts test
):
yarn test
输出:
FAIL src/containers/pages/Feature/Feature.test.tsx
● Test suite failed to run
Target container is not a DOM element.
17 | const { store, persistor } = configureStore(history, initialState);
18 |
> 19 | ReactDOM.render(
| ^
20 | <Provider store={store}>
21 | <PersistGate loading={null} persistor={persistor}>
22 | <ConnectedRouter history={history}>
at Object.render (node_modules/react-dom/cjs/react-dom.development.js:27596:13)
at Object.render (src/index.tsx:19:10)
简单的测试代码:
import * as React from 'react';
import { create } from 'react-test-renderer';
import Feature from "./Feature";
describe('Feature page component', () => {
test('matches the snapshot', () => {
const feature = create(
<Feature />,
);
expect(feature.toJSON()).toMatchSnapshot();
});
});
src/index.tsx 文件实际上包含ReactDOM.render()
在测试中失败的调用,但有什么可行的替代方法?
注意:应用程序本身运行良好,只是无法在测试模式下运行。
在 src/index.tsx 文件中我有:
export const history = createBrowserHistory({
basename: '/admin',
});
const initialState: StoreState = (undefined as unknown) as StoreState;
const { store, persistor } = configureStore(history, initialState);
然后在服务和传奇中,我history
从store
index.tsx 导入。可能是导致测试失败的问题吗?
我试图提取history
并保存store
到一个单独的文件中(如评论者所建议的那样)。现在上面的代码在里面src/initialState.ts
。
- 好消息:错误“目标容器不是 DOM 元素”消失了!
- 坏消息:我收到一个新错误(可能是一个独立的问题,因此提取到一个单独的问题)