第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 Jest 中模擬類(lèi)常量

在 Jest 中模擬類(lèi)常量

慕桂英3389331 2022-11-11 14:19:15
假設(shè)我有以下this.MAX_LENGTH在構(gòu)造函數(shù)中設(shè)置常量的組件。import PropTypes from 'prop-types';import React from 'react';class Input extends React.Component {  static propTypes = {    value: PropTypes.string.isRequired  };  constructor(props) {    super(props);    // An example constant    this.MAX_LENGTH = 1024;  }  render() {        return (      <label htmlFor="comment_body">        <textarea          className="comment-reply input-highlight-on-focus"          type="input"          name="comment[body]"          id="comment_body"          maxLength={this.MAX_LENGTH}          value={this.props.value} />      </label>    )  }}export default Input;該MAX_LENGTH常量用于設(shè)置的最大長(zhǎng)度textarea。在我的 Jest 規(guī)范中,我想模擬 的值this.MAX_LENGTH,但我不確定如何設(shè)置該模擬。這是我的 Jest 測(cè)試的外觀(它使用chai并enzyme作為測(cè)試助手):it('renders the textarea', () => {  // Mock the constant here to set a custom value of 99  // ????  const wrapper = mount(<Input value={'foo'} />)  const textarea = wrapper.find('.comment-reply').first();  expect(textarea).to.have.attr('maxLength', '99');});我可以????用模擬常量的值來(lái)代替什么?我嘗試閱讀Jest 文檔中的ES6 Class Mocks,但它似乎是在模擬整個(gè)導(dǎo)入的類(lèi),我不確定它如何應(yīng)用于單個(gè)常量。
查看完整描述

1 回答

?
月關(guān)寶盒

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超5個(gè)贊

對(duì)常量使用實(shí)例屬性被認(rèn)為是一種不好的做法;這就是靜態(tài)屬性的用途。這可以像Input.MAX_LENGTH = ...安裝組件之前一樣模擬:


class Input extends React.Component {

  static MAX_LENGTH = 1024;

  ...

}

中需要恢復(fù)原值afterEach。


或者至少使它成為只讀原型屬性。這可以像jest.spyOn(Input, 'MAX_LENGTH', 'get').mockReturnValue(...)安裝組件之前一樣模擬:


class Input extends React.Component {

  get MAX_LENGTH() { return 1024 };

  ...

}

沒(méi)有它,它需要在初始渲染后在組件實(shí)例上進(jìn)行模擬:


const wrapper = mount(<Input value={'foo'} />)

wrapper.instance().MAX_LENGTH = ...;

wrapper.setProps({});

...


查看完整回答
反對(duì) 回復(fù) 2022-11-11
  • 1 回答
  • 0 關(guān)注
  • 134 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)