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

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

在 Jest 測(cè)試快照上返回未定義的字符串連接

在 Jest 測(cè)試快照上返回未定義的字符串連接

肥皂起泡泡 2023-05-19 17:18:34
我有以下反應(yīng)組件import styles from './Alert.module.scss';const Alert = ({  role = 'document',  type = 'info',}) => (<GridItem>  <div className={`${styles.alert} ${styles[`alert-${type}`]}`} role={role}>   {icon && <div className={`${styles['alert-icon']}`} />}   <div className={styles.content}>{children}</div>  </div></GridItem>我正在這樣寫我的測(cè)試jest.mock('./Alert.module.scss', () => ({   'alert': 'alert',   'type': 'info',}));jest.mock('./GridItem', () => 'GridItem');describe('Alert', () => {  it('should render correctly', () => {    expect(renderer.create(<Alert>Alert</Alert>)).toMatchSnapshot();  });});問(wèn)題是在創(chuàng)建快照時(shí),類型變量返回未定義。我假設(shè)它與字符串連接有關(guān),因?yàn)椤敖巧弊兞繉懭胝_。這是快照。<GridItem>  <div    className="alert undefined"    role="document"  >    <div>      Alert    </div>  </div></GridItem>`;所以,我不確定我在這里遺漏了什么,或者是否對(duì)字符串連接有任何限制。我怎樣才能正確得到它?謝謝!
查看完整描述

1 回答

?
慕斯709654

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

您在type變量前加上alert-, 它似乎不存在于模擬styles對(duì)象上。所以你可以嘗試添加它


jest.mock('./Alert.module.scss', () => ({ 

  'alert': 'alert', 

  'type': 'info',


  // add the following line

  'alert-info': 'info'

}));


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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