JESTテストのgetComputedStyle()がChrome / Firefox DevToolsの計算されたスタイルに異なる結果を返すのはなぜですか


16

material-uiにMyStyledButton基づくカスタムボタン()を作成しました。 Button

import React from "react";
import { Button } from "@material-ui/core";
import { makeStyles } from "@material-ui/styles";

const useStyles = makeStyles({
  root: {
    minWidth: 100
  }
});

function MyStyledButton(props) {
  const buttonStyle = useStyles(props);
  const { children, width, ...others } = props;

  return (

      <Button classes={{ root: buttonStyle.root }} {...others}>
        {children}
      </Button>
     );
}

export default MyStyledButton;

テーマを使用してスタイルが設定されており、これbackgroundColorはを黄色の色合いに指定します(具体的には#fbb900

import { createMuiTheme } from "@material-ui/core/styles";

export const myYellow = "#FBB900";

export const theme = createMuiTheme({
  overrides: {
    MuiButton: {
      containedPrimary: {
        color: "black",
        backgroundColor: myYellow
      }
    }
  }
});

コンポーネントは私のメインでインスタンス化され、index.jsでラップされますtheme

  <MuiThemeProvider theme={theme}>
     <MyStyledButton variant="contained" color="primary">
       Primary Click Me
     </MyStyledButton>
  </MuiThemeProvider>

Chrome DevToolsでボタンを調べると、background-color期待どおりに「計算」されています。これは、Firefox DevToolsにも当てはまります。

Chromeのスクリーンショット

ただし、JESTテストを記述してチェックしbackground-color、DOMノードのスタイルを照会すると、ボタンを使用しgetComputedStyles()transparent戻るため、テストが失敗します。

const wrapper = mount(
    <MyStyledButton variant="contained" color="primary">
      Primary
    </MyStyledButton>
  );
  const foundButton = wrapper.find("button");
  expect(foundButton).toHaveLength(1);
  //I want to check the background colour of the button here
  //I've tried getComputedStyle() but it returns 'transparent' instead of #FBB900
  expect(
    window
      .getComputedStyle(foundButton.getDOMNode())
      .getPropertyValue("background-color")
  ).toEqual(myYellow);

正確な問題、再現する最小コード、および失敗したJESTテストを含むCodeSandboxを含めました。

headless-snow-nyofdを編集する


.MuiButtonBase-root-33 background-colorは透明ですが、.MuiButton-containedPrimary-13は透明ではありません-したがって問題は、CSSのクラスは同等に重要であるため、ロード順序だけがそれらを区別することです->テストスタイルでは、間違った順序でロードされます。
Zydnar

1
@Andreas-要求に応じて更新
Simon Long

@Zyndar-はい、知っています。このテストに合格させる方法はありますか?
Simon Long、

themeテストで使用する必要はありませんか?のように、でラップ<MyStyledButton><MuiThemeProvider theme={theme}>ますか?または、ラッパー関数を使用してすべてのコンポーネントにテーマを追加しますか?
Brett DeWoody

いいえ、違いはありません。
Simon Long

回答:


1

近づいてきましたが、まだ解決策には至っていません。

主な問題は、MUIButtonが要素にタグを挿入してスタイルを強化することです。これは、単体テストでは発生していません。マテリアルテストで使用されているcreateMountを使用してこれを機能させることができました。

この修正後、スタイルは正しく表示されます。ただし、計算されたスタイルはまだ機能しません。他の人が酵素がこれを正しく処理することで問題に遭遇したようです-それが可能かどうかはわかりません。

私がいた場所に移動するには、テストスニペットを取得し、これを一番上にコピーしてから、テストコードを次のように変更します。

const myMount = createMount({ strict: true });
  const wrapper = myMount(
    <MuiThemeProvider theme={theme}>
      <MyStyledButton variant="contained" color="primary">
        Primary
      </MyStyledButton>
    </MuiThemeProvider>
  );
class Mode extends React.Component {
  static propTypes = {
    /**
     * this is essentially children. However we can't use children because then
     * using `wrapper.setProps({ children })` would work differently if this component
     * would be the root.
     */
    __element: PropTypes.element.isRequired,
    __strict: PropTypes.bool.isRequired,
  };

  render() {
    // Excess props will come from e.g. enzyme setProps
    const { __element, __strict, ...other } = this.props;
    const Component = __strict ? React.StrictMode : React.Fragment;

    return <Component>{React.cloneElement(__element, other)}</Component>;
  }
}

// Generate an enhanced mount function.
function createMount(options = {}) {

  const attachTo = document.createElement('div');
  attachTo.className = 'app';
  attachTo.setAttribute('id', 'app');
  document.body.insertBefore(attachTo, document.body.firstChild);

  const mountWithContext = function mountWithContext(node, localOptions = {}) {
    const strict = true;
    const disableUnnmount = false;
    const localEnzymeOptions = {};
    const globalEnzymeOptions = {};

    if (!disableUnnmount) {
      ReactDOM.unmountComponentAtNode(attachTo);
    }

    // some tests require that no other components are in the tree
    // e.g. when doing .instance(), .state() etc.
    return mount(strict == null ? node : <Mode __element={node} __strict={Boolean(strict)} />, {
      attachTo,
      ...globalEnzymeOptions,
      ...localEnzymeOptions,
    });
  };

  mountWithContext.attachTo = attachTo;
  mountWithContext.cleanUp = () => {
    ReactDOM.unmountComponentAtNode(attachTo);
    attachTo.parentElement.removeChild(attachTo);
  };

  return mountWithContext;
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.