-
Notifications
You must be signed in to change notification settings - Fork 667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isVisible() not seeing display: none using vitest with jsdom #2073
Comments
Same for me |
1 similar comment
Same for me |
Try using I don't think something is considered visible or not if it is not in the actual document. I could be wrong though, let me know if that helps. |
Same for me as well. I am using |
Same issue here. Using vue-test-utils ^2.1.4, vitest ^2.1.3. Any news on that issue ? |
Subject of the issue
@vue/test-utils: 2.3.2
jsdom: 22.0.0
vitest: 0.31.0
Using vue3, vue-test-utils and vitest with jsdom - our tests are failing on
isVisible().toBeFalsy()
The documentation says the
display: none
is one method used to identify isVisible()https://v1.test-utils.vuejs.org/api/wrapper/isvisible.html
The tests were passing using Jest
Steps to reproduce
Mount wrapper
Element when shown
<div class="accordionRow" style="">
Element when hidden
<div class="accordionRow" style="display: none;">
Using
Expected behaviour
Test should pass when the attribute style is
display: none;
and.isVisible().toBeFalsy()
is used for the assertionActual behaviour
Test fails because the assertion is not seeing
display: none;
Possible Solution
expect(wrapper.find('.accordionRow').attributes('style')).toBe('display: none;')
The text was updated successfully, but these errors were encountered: