pleasantest
pleasantest copied to clipboard
⛵ Write real-browser tests with Testing Library in Jest
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/cloudfour/pleasantest). ## Config Migration Needed - [ ]...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [acorn](https://togithub.com/acornjs/acorn) | [`^8.8.0` -> `^8.8.1`](https://renovatebot.com/diffs/npm/acorn/8.8.0/8.8.1) | [](https://docs.renovatebot.com/merge-confidence/)...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aria-query](https://togithub.com/A11yance/aria-query) | devDependencies | pin | [`*` -> `5.0.2`](https://renovatebot.com/diffs/npm/aria-query/5.0.2/5.0.2) | Add...
This PR adds a new example from the elastic textarea component. This test differs from the Menu example by injecting HTML directly.
Assistive technologies use [`aria-live` regions](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-live) to announce important content changes to their users. It would be great if Pleasantest exposed tools to help test aria live announcements. There are two...
We could make it ignore case changes by always lowercasing the output ```ts await getAccessibilityTree( el, { caseInsensitive: true } ) ``` I am not sure yet if this is...
Currently if you try to click/type an element that has low opacity to the point of not being visible, here is the error message: ``` Cannot perform action on element...
Sometimes some elements cause a lot of clutter and don't help the test. We could allow passing an array of elements or a function to exclude them: ```ts await getAccessibilityTree(...
(I am thinking this through so this is not a complete thought yet, hold off on feedback till I finish the thought) Accessible by screen readers, Visible by sighted users...
I would like to remove the dependency on `rollup-plugin-postcss`, it has a [very big dependency tree](https://npm.anvaka.com/#/view/2d/rollup-plugin-postcss) and is not very maintained. What we need from a CSS solution: - Import...