I have a few hover pseudo classes in css and want to run a test and check if they are behaving properly. Is this possible with Jest? Apologies for my lack of knowledge here I'm only a day in using Jest.
Css:
.my-btn--lg.my-btn--brand.hover, .my-btn--md.my-btn--brand:hover {
background-color: #ac0000;
}