- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我从 tsx 文件导入 HOC 时,一切正常。但是当我将扩展名更改为 js 时,我看到一个 Jest 错误:
Jest encountered an unexpected token. This usually means that you are trying to import a file that Jest cannot parse, e.g. it's not plain JavaScript.
By default, if Jest sees a Babel config, it will use that to transform your files, ignoring "node_modules".
Here's what you can do:
• To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
• If you need a custom transformation specify a "transform" option in your config.
• If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.
我的 jest.config.js:
module.exports = {
automock: false,
preset: 'ts-jest/presets/js-with-babel',
setupTestFrameworkScriptFile: '<rootDir>/_internals/jest/setup.js',
moduleNameMapper: {
'\\.(less|svg|png|css|pdf|woff|woff2)$': 'identity-obj-proxy',
...mappers,
},
testPathIgnorePatterns: ['/node_modules/', '/lib/', '/dist/', '/.tmp/', '/git/'],
testMatch: null,
testRegex: '/tests/[a-zA-z-_]+\\.spec\\.(tsx|ts)$',
moduleDirectories: ['node_modules'],
moduleFileExtensions: ['js', 'json', 'ts', 'tsx'],
};
我的 HOC:
export function myHOC(WrappedComponent) {
return class extends React.Component {
componentDidMount() {
actions();
}
render() {
return <WrappedComponent {...this.props} />;
}
};
}
export default myHOC;
我的测试:
import * as React from 'react';
import { shallow } from 'enzyme';
import { Component } from '..';
jest.mock('myHOC', () => jest.fn());
describe('Component', () => {
beforeEach(() => {
wrapper = shallow(<Component data={undefined} />);
});
it('should return null if there are no data', () => {
expect(wrapper.html()).toBe(null);
});
});
.babelrc
{
"env" : {
"test" : {
"plugins": ["transform-es2015-modules-commonjs"]
}
}
}
我该如何解决这个问题?
最佳答案
你可以在ts-jest中看到文档表明您当前使用的预设将让 babel 处理 .js
文件
ts-jest/presets/js-with-babel: TypeScript files will be handled by ts-jest, and JavaScript files will be handled by babel-jest.
所以你应该:
这将转换所有的 jsx
.babelrc
{
"presets": ["@babel/preset-react"]
"env" : {
"test" : {
"plugins": ["transform-es2015-modules-commonjs"]
}
}
}
或
如果需要的话添加
tsconfig.json
{
//...
allowJs: true
}
编辑:如果您的应用程序在 myHOC 为 .js
时正常运行,您可能应该选择第二个选项
关于javascript - Jest 不能使用 js 文件中的 HOC,但可以正确使用 tsx 文件中的 HOC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58955669/
我有一个高阶组件,它使用 React Router 提供的 location.search Prop 来构造一个 queryParams 对象,并将其作为 Prop 传递给它的包装组件。 functi
当我从 tsx 文件导入 HOC 时,一切正常。但是当我将扩展名更改为 js 时,我看到一个 Jest 错误: Jest encountered an unexpected token. This u
我最近正在努力解决复杂的 HOC 问题,以及如何仅传递其中定义的新 Prop 而不是任何其他 Prop 。更准确地说,假设我的 HOC 使用其他 HOC 来扩展其属性,例如 const withSes
我的基本理解是 HOC 之类的连接(用于连接 redux 存储)和其他 HOC 在导出组件时应用于组件。 像这样 import React, { Component } from 'react'; i
我在创建简单的 HOC 时遇到问题,当没有查询参数时应该重定向到 404。否则,它应该只返回一个组件。 import React, { useState, useEffect } from 'reac
我有这个简单的高阶组件,它工作正常但它只接受一个组件: let VerticalSlider = (Komponent) => { return (props) => (
我想使用高阶组件向我的组件包装器添加样式。 Typescript 说 ComponentWithAdddedColors 有错误。 type Props = { bg?: string; }; f
在 Ansible 文档中,它的表述如下:- 也可以使用 --become-user 成为 root 以外的用户:$ ansible atlanta -a "/usr/bin/foo"-u 用户名 -
我正在研究无线 ad-hoc 网络中的邻居发现协议(protocol)。有许多协议(protocol)在发现阶段进行时仅依赖节点之间的信标消息。另一方面,还有其他方法试图在发现过程中传输更多信息(如节
这是我的父组件(Grid),(这里我传递了更多 hoc 使用的 Prop ,但我在这里省略了它们): 这是表组件: export const QuickBooksTable = withIntegr
背景故事:我在一家开发和制造商业产品的公司工作,该产品在一个农场中可以拥有多达 100 多台专用 PC。 我们每年仅获得少数新客户。 我们开发了一款 iPod/iPhone 应用程序,可让我们向农场发
我刚刚开始在 React 中使用 HOC,让我有点困惑的一件事是,这个示例中的内部函数如何访问props 作为参数? const withProps = Component => ( props
我尝试使用 HOC 模式而不是面向对象以避免冗余代码。 情况很简单,解释如下: 在主页中我有这样的内容: const WrappedComponent = Wrapper(Wrapped); 在包装
问题 让我们假设我有一个 SFC(我正在使用 TypeScript)并将其导出,如下所示: export const AppShell: React.SFC = (props: Props) => (
我正在构建这个 HOC Modal。 当我按下模态上的“Aplicar”按钮(TouchableItem:onPress)时,我需要访问 WrappedComponent 状态。 有什么办法可以做到这
我需要向所有我的React函数组件中添加添加[data-test-id]属性以进行测试的可能性。为了实现这一点,我创建了 withTestId() HOC,它将可选的 prop testId 添加到包
我刚刚开始在 React 中使用 HOC,让我有点困惑的一件事是,这个示例中的内部函数如何访问props 作为参数? const withProps = Component => ( props
我是 .net 背景的新手,这里的问题是 HOC 与 OOPS 概念中的继承有何不同,它具有具有基属性的父类和扩展 Base 并使用 Base 类中的状态、属性和基方法的子类。 React组件中实现P
我正在尝试创建一个 HOC,使常规功能组件“可触摸”。 所以我有一个像这样的 HOC: const Touchable = (Component, handler) => { const T =
我刚刚检查了 React 中的 HOC。他们很酷。但是,简单地包装一个组件不就可以达到相同的结果吗? 高阶组件 这个简单的 HOC 将状态作为属性传递给 CompositComponent const
我是一名优秀的程序员,十分优秀!