- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经检查了 stackoverflow 上的其他问题,但没有一个解决方案有效,这就是我重复这个问题的原因。
如标题所示,我在运行测试用例时遇到错误。我还没有在设备上运行它。
我也尝试了 https://github.com/facebook/react-native/issues/5747 上建议的各种方法.但我没有在这方面取得成功。
我的实用程序 js 文件如下sanity.js
/**
* Constants for type of object passed
*/
export const TYPE_OF = {
STRING: 'string',
FUNCTION: 'function',
UNDEFINED: 'undefined',
BLANK: '',
NULL: 'null',
NEGATIVE_INDEX: -1
}
/**
* Checks whether any parameters passed is null or not.
* @param {...any} params that needs to be checked
* @returns {boolean} true if any one param is null
*/
export function isNull(...params) {
for (let i = 0; i < params.length; i = i + 1) {
if (TYPE_OF.UNDEFINED === typeof params[i] || TYPE_OF.NULL === typeof params[i]) {
return true
}
}
return false
}
/**
* Checks whether all parameters passed is function or not
* @param {...any} params that needs to be checked
* @returns {boolean} true if all params are function
*/
export function isFunction(...params) {
for (let i = 0; i < params.length; i = i + 1) {
if (TYPE_OF.FUNCTION !== typeof params[i]) {
return false
}
}
return false
}
/**
* Checkes whether all parameters passed is string or not
* @param {...any} params that needs to be checked
* @returns {boolean} true of all params are string
*/
export function isString(...params) {
for (let i = 0; i < params.length; i = i + 1) {
if (TYPE_OF.STRING !== typeof params[i]) {
return false
}
}
return false
}
下面是使用jest的测试用例sanity.test.js
import { isNull, isFunction, isString } from '../../src/utils/sanity.js'
describe('check for nulls', () => {
it('none of the arguments are null', () => {
let var1 = ''
let var2 = 'abc'
let var3 = ['1', '2']
let booleanValue = isNull(var1, var2, var3)
expect(booleanValue).toEqual(false)
})
it('one of the arguments is null', () => {
let var1
let var2 = 'abc'
let var3 = ['1', '2']
let booleanValue = isNull(var1, var2, var3)
expect(booleanValue).toEqual(true)
})
})
describe('check for functions', () => {
it('all the arguments are function', () => {
let var1 = jest.fn()
let var2 = jest.fn()
let booleanValue = isFunction(var1, var2)
expect(booleanValue).toEqual(true)
})
it('not all the arguments are function', () => {
let var1 = jest.fn()
let var2 = jest.fn()
let var3 = '3'
let booleanValue = isFunction(var1, var2, var3)
expect(booleanValue).toEqual(false)
})
})
describe('check for strings', () => {
it('all the arguments are string', () => {
let var1 = ''
let var2 = '2'
let booleanValue = isString(var1, var2)
expect(booleanValue).toEqual(true)
})
it('not all the arguments are string', () => {
let var1 = 'abc'
let var2
let var3 = '3'
let booleanValue = isString(var1, var2, var3)
expect(booleanValue).toEqual(false)
})
})
在我的 package.json
中,我有以下内容 -
{
"dependencies": {
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-native": "^0.56.1",
"react-navigation": "^2.13.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^5.0.2",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.2.1",
"jest": "23.5.0",
"jest-cli": "^22.4.4",
"jest-sonar-reporter": "^2.0.0",
"jest-static-stubs": "0.0.1",
"jsdoc": "^3.5.5",
"react-dom": "^16.5.0",
"react-test-renderer": "16.4.1",
"regenerator-runtime": "^0.12.1"
},
"jest": {
"preset": "react-native",
"testResultsProcessor": "jest-sonar-reporter"
},
"jestSonar": {
"sonar56x": true
}
}
我的 .babelrc
目前看起来是这样的 -
{
"presets": ["@babel/preset-env", "@babel/preset-react", "react-native"]
}
当我运行测试时,这就是我得到的 -
FAIL __test__/utils/sanity.test.js
check for nulls
✕ none of the arguments are null (4ms)
✕ one of the arguments is null (1ms)
check for functions
✕ all the arguments are function
✕ not all the arguments are function (1ms)
check for strings
✕ all the arguments are string
✕ not all the arguments are string (1ms)
● check for nulls › none of the arguments are null
TypeError: babelHelpers.typeof is not a function
19 | export function isNull(...params) {
20 | for (let i = 0; i < params.length; i = i + 1) {
> 21 | if (TYPE_OF.UNDEFINED === typeof params[i] || TYPE_OF.NULL === typeof params[i]) {
22 | return true
23 | }
24 | }
at isNull (src/utils/sanity.js:21:104)
at Object.<anonymous> (__test__/utils/sanity.test.js:8:43)
● check for nulls › one of the arguments is null
TypeError: babelHelpers.typeof is not a function
19 | export function isNull(...params) {
20 | for (let i = 0; i < params.length; i = i + 1) {
> 21 | if (TYPE_OF.UNDEFINED === typeof params[i] || TYPE_OF.NULL === typeof params[i]) {
22 | return true
23 | }
24 | }
at isNull (src/utils/sanity.js:21:104)
at Object.<anonymous> (__test__/utils/sanity.test.js:16:43)
● check for functions › all the arguments are function
TypeError: babelHelpers.typeof is not a function
33 | export function isFunction(...params) {
34 | for (let i = 0; i < params.length; i = i + 1) {
> 35 | if (TYPE_OF.FUNCTION !== typeof params[i]) {
36 | return false
37 | }
38 | }
at isFunction (src/utils/sanity.js:35:49)
at Object.<anonymous> (__test__/utils/sanity.test.js:24:47)
● check for functions › not all the arguments are function
TypeError: babelHelpers.typeof is not a function
33 | export function isFunction(...params) {
34 | for (let i = 0; i < params.length; i = i + 1) {
> 35 | if (TYPE_OF.FUNCTION !== typeof params[i]) {
36 | return false
37 | }
38 | }
at isFunction (src/utils/sanity.js:35:49)
at Object.<anonymous> (__test__/utils/sanity.test.js:32:47)
● check for strings › all the arguments are string
TypeError: babelHelpers.typeof is not a function
47 | export function isString(...params) {
48 | for (let i = 0; i < params.length; i = i + 1) {
> 49 | if (TYPE_OF.STRING !== typeof params[i]) {
50 | return false
51 | }
52 | }
at isString (src/utils/sanity.js:49:47)
at Object.<anonymous> (__test__/utils/sanity.test.js:40:45)
● check for strings › not all the arguments are string
TypeError: babelHelpers.typeof is not a function
47 | export function isString(...params) {
48 | for (let i = 0; i < params.length; i = i + 1) {
> 49 | if (TYPE_OF.STRING !== typeof params[i]) {
50 | return false
51 | }
52 | }
at isString (src/utils/sanity.js:49:47)
at Object.<anonymous> (__test__/utils/sanity.test.js:48:45)
最佳答案
我对我的 sanity.js
、.babelrc
文件进行了调整,它开始工作了。经验教训是在添加任何包或更改 babel 后使用以下命令:
我在我的 package.json
"reset": "watchman watch-del-all && react-native start --reset-cache"
每次更改配置后,我都会运行 npm run reset
sanity.js
/**
* Constants for type of object passed
*/
export const TYPE_OF = {
BLANK: '',
NEGATIVE_INDEX: -1
}
/**
* Checks whether any parameters passed is null or not.
* @param {...any} params that needs to be checked
* @returns {boolean} true if any one param is null
*/
export function isNull(...params) {
for (let i = 0; i < params.length; i = i + 1) {
if (params[i] === null || params[i] === undefined) { // eslint-disable-line
return true
}
}
return false
}
/**
* Checks whether all parameters passed is function or not
* @param {...any} params that needs to be checked
* @returns {boolean} true if all params are function
*/
export function isFunction(...params) {
for (let i = 0; i < params.length; i = i + 1) {
if (isNull(params[i]) || params[i] && {}.toString.call(params[i]) !== '[object Function]') {
return false
}
}
return true
}
/**
* Checkes whether all parameters passed is string or not
* @param {...any} params that needs to be checked
* @returns {boolean} true of all params are string
*/
export function isString(...params) {
for (let i = 0; i < params.length; i = i + 1) {
if (isNull(params[i]) || params[i] && {}.toString.call(params[i]) !== '[object String]') {
return false
}
}
return true
}
我的 .babelrc
现在看起来像这样
{
"presets": ["react-native"]
}
关于javascript - React Native : TypeError: babelHelpers. typeof 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52326032/
问题是,当用户回复彼此的帖子时,我必须这样做: margin-left:40px; 对于 1 级深度 react margin-left:80px; 对于 2 层深等 但是我想让 react div
我试图弄清楚如何将 React Router 与 React VR 连接起来。 首先,我应该使用 react-router dom/native ?目前尚不清楚,因为 React VR 构建在 Rea
我是 React 或一般编码背景的新手。我不确定这些陈述之间有什么区别 import * as react from 'react' 和 import react from 'react' 提前致谢!
我正在使用最新的稳定版本的 react、react-native、react-test-renderer、react-dom。 然而,react-native 依赖于 react@16.0.0-alp
是否 react 原生 应用程序开发可以通过软件架构实现,例如 MVC、MVP、MVVM ? 谢谢你。 最佳答案 是的。 React Native 只是你提到的那些软件设计模式中的“V”。如果你考虑其
您好我正在尝试在我的导航器右按钮中绑定(bind)一个功能, 但它给出了错误。 这是我的代码: import React, { Component } from 'react'; import Ico
我使用react native创建了一个应用程序,我正在尝试生成apk。在http://facebook.github.io/react-native/docs/signed-apk-android.
1 [我尝试将分页的 z-index 更改为 0,但没有成功] 这是我的codesandbox的链接:请检查最后一个选择下拉列表,它位于分页后面。 https://codesandbox.io/s/j
我注意到 React 可以这样导入: import * as React from 'react'; ...或者像这样: import React from 'react'; 第一个导入 react
我是 react-native 的新手。我正在使用 React Native Paper 为所有屏幕提供主题。我也在使用 react 导航堆栈导航器和抽屉导航器。首先,对于导航,论文主题在导航组件中不
我有一个使用 Ignite CLI 创建的 React Native 应用程序.我正在尝试将 TabNavigator 与 React Navigation 结合使用,但我似乎无法弄清楚如何将数据从一
我正在尝试在我的 React 应用程序中进行快照测试。我已经在使用 react-testing-library 进行一般的单元测试。然而,对于快照测试,我在网上看到了不同的方法,要么使用 react-
我正在使用 react-native 构建跨平台 native 应用程序,并使用 react-navigation 在屏幕之间导航和使用 redux 管理导航状态。当我嵌套导航器时会出现问题。 例如,
由于分页和 React Native Navigation,我面临着一种复杂的问题。 单击具有类别列表的抽屉,它们都将转到屏幕 问题陈述: 当我随机点击类别时,一切正常。但是,在分页过程中遇到问题。假
这是我的抽屉导航: const DashboardStack = StackNavigator({ Dashboard: { screen: Dashboard
尝试构建 react-native android 应用程序但出现以下错误 info Running jetifier to migrate libraries to AndroidX. You ca
我目前正在一个应用程序中实现 React Router v.4,我也在其中使用 Webpack 进行捆绑。在我的 webpack 配置中,我将 React、ReactDOM 和 React-route
我正在使用 React.children 渲染一些带有 react router 的子路由(对于某个主路由下的所有子路由。 这对我来说一直很好,但是我之前正在解构传递给 children 的 Prop
当我运行 React 应用程序时,它显示 export 'React'(导入为 'React')在 'react' 中找不到。所有页面错误 see image here . 最佳答案 根据图像中的错误
当我使用这个例子在我的应用程序上实现 Image-slider 时,我遇到了这个错误。 import React,{Component} from 'react' import {View,T
我是一名优秀的程序员,十分优秀!