Is there a way to test a non inline style CSS color of the word 'Hello' in a jest?
.textStyle {
color: red;
}
<p class="textStyle">Hello</p>
test('test text color', () => {
const wrapper = mount(<React />);
const p = wrapper.find('p').text();
//insert code here
});