Alex Kessock
Alex Kessock
.01 is 1% per https://github.com/americanexpress/jest-image-snapshot#%EF%B8%8F-api
I went ahead and added typings for folks to use: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/41222 Now, all you need to do is `yarn add @types/cypress-image-snapshot -D` for this plugin to work with TypeScript!
I went ahead and added typings for folks to use: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/41222 Now, all you need to do is `yarn add @types/cypress-image-snapshot -D` for this plugin to work with TypeScript!
@Svish -- options have been added if you upgrade to `3.1.1` https://github.com/DefinitelyTyped/DefinitelyTyped/pull/41897/files#diff-603108fb86a139bc0934ce518b4267eeR10
I just came across this missing functionality as well - would love to have the ability to see network errors to know when loading an external asset no longer works
I ran into this same issue due to having the following CSS on the element I was trying to take a snapshot of: `height: calc(100% - 66px);`. When I changed...
It'll be in your HTML or CSS file. Try searching for any instances of `height: calc(` and see if you can refactor away from using it. Definitely a short-term solution...
I went ahead and filed this issue for the cypress team to weight in on as it's not an issue with this particular plugin: https://github.com/cypress-io/cypress/issues/6099. I realized that using the...
I just ran into this and resolved it by switching `@emotion/styled` to `@storybook/theming`, which forces emotion to use a single version. This was caused by one of our dependencies relying...
Thanks @azakus - that works for me on Yosemite