Adi Unnithan
Adi Unnithan
Thank you @wKich! I will check it out. The issue I'm running into is that I'm trying to run `creevey --extract` to create a stories.json for my storybook project (which...
Just want to mention/clarify a few things since I tried following this thread: I tried the latest version of Kap (3.5.1) and it had this error. * **Only version 3.4.2...
Hey @jjwallace @Lmpas28 - please check the docs to see how to pass `flippedProps` into React components: https://github.com/aholachek/react-flip-toolkit#wrapping-a-react-component
Cypress is really impressive. (Looking at https://docs.cypress.io/guides/core-concepts/interacting-with-elements.html#Actionability). FWIW for handling off-screen I worked around this by using `wait` with an expectation callback to check if an element is within a...
> If we change the overflow style to scroll, then would we consider Paragraph-4 to be visible again? Because in that case it can easily become visible. I would actually...
Thanks for the explanation... that is an interesting requirement. Why is that though? Cypress [regards a scrolled-out element as "not visible"](https://docs.cypress.io/guides/core-concepts/interacting-with-elements.html#Visibility). When I think of "The more your tests resemble...
I noticed https://www.reddit.com wasn't loading at all today - it's showing a blank screen (before, it was loading, but images weren't). I narrowed it down to this extension :(
Is there any workaround here @BurtHarris? We also hit the same issue that @usstwxy hit, using Vite rollup
I was able to get a little further by mapping `global` to `window` in my `main.js`: ``` async viteFinal(config) { return { ...config, define: { ...config.define, global: "window", }, };...
Alright, I finally fixed this... `jest-mock` doesn't explicitly provide a default export so in storybook's `preview.js` this is what I have: ```javascript import * as jest from "jest-mock"; window.jest =...