Я написав спеціальну кнопку ( MyStyledButton
) на основі матеріалу-ui 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.
Однак, коли я пишу тест 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);
Я включив CodeSandbox з точною проблемою, мінімальним кодом для відтворення та невдалим тестом JEST.
theme
потрібно було б використовуватись у тесті? Як в, загорнути <MyStyledButton>
в <MuiThemeProvider theme={theme}>
? Або використовувати якусь функцію обгортки, щоб додати тему до всіх компонентів?