作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
TLDR:我如何告诉我的 Enzyme/Jest 测试应该像在 iOS 上运行一样运行测试?我要测试platform specific behaviour .
我正在构建一个自定义状态栏组件,如果它在 iOS 上运行,则会增加 20 像素的高度,以防止我的内容与状态栏重叠。 (是的,我知道 React-Navigation has a SafeAreaView ,但这仅适用于 iPhone X,不适用于 iPad 等。)
这是我的组件:
import React from "react";
import { StatusBar as ReactNativeStatusBar, View } from "react-native";
import styles from "./styles";
const StatusBar = ({ props }) => (
<View style={styles.container}>
<ReactNativeStatusBar {...props} />
</View>
);
export default StatusBar;
这是 styles.js
文件:
import { StyleSheet, Platform } from "react-native";
const height = Platform.OS === "ios" ? 20 : 0;
const styles = StyleSheet.create({
container: {
height: height
}
});
export default styles;
这是迄今为止的测试:
import React from "react";
import { shallow } from "enzyme";
import { View } from "react-native";
import StatusBar from "./StatusBar";
const createTestProps = props => ({
...props
});
describe("StatusBar", () => {
describe("rendering", () => {
let wrapper;
let props;
beforeEach(() => {
props = createTestProps();
wrapper = shallow(<StatusBar {...props} />);
});
it("should render a <View />", () => {
expect(wrapper.find(View)).toHaveLength(1);
});
it("should give the <View /> the container style", () => {
expect(wrapper.find(View)).toHaveLength(1);
});
it("should render a <StatusBar />", () => {
expect(wrapper.find("StatusBar")).toHaveLength(1);
});
});
});
现在我想做的是添加两个描述区域,明确测试 iOS 上的高度为 20 或 0 或 Android。问题是我找不到如何使用 Enzyme/Jest 测试来模拟平台。
那么我如何告诉我的测试套件它应该运行相应平台的代码?
最佳答案
您可以覆盖 RN Platform
对象并为每个平台执行不同的测试。以下是测试文件的示例:
describe('tests', () => {
let Platform;
beforeEach(() => {
Platform = require('react-native').Platform;
});
describe('ios tests', () => {
beforeEach(() => {
Platform.OS = 'ios';
});
it('should test something on iOS', () => {
});
});
describe('android tests', () => {
beforeEach(() => {
Platform.OS = 'android';
});
it('should test something on Android', () => {
});
});
});
顺便说一句,无论测试问题如何,在 iOS 上将状态栏高度设置为 20 是错误的,因为它在不同设备上可能有不同的尺寸(例如 iPhone X)
关于React-Native + enzyme + Jest : How to test platform specific behaviour?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51927286/
我是一名优秀的程序员,十分优秀!