cypress-plugin-snapshots
cypress-plugin-snapshots copied to clipboard
Plugin for snapshot tests in Cypress.io
**Describe the bug** ```json // cypress.json "env": { "cypress-plugin-snapshots": { "screenshotConfig": { "disableTimersAndAnimations": false } } ``` changes nothing. Only directly in method `toMatchImageSnapshot({disableTimersAndAnimations: false})` **To Reproduce** Steps to reproduce...
I have been following the README step by step. Here is the state of my dummy project: [Repo](https://github.com/cjea/cypress-visual-regression-practice/) I wrote this test: [File](https://github.com/cjea/cypress-visual-regression-practice/blob/master/cypress/integration/poop/index.spec.js#L2-L5) ```javascript cy.visit("localhost:3000") .document() .toMatchImageSnapshot(); ``` Running that...
**Describe the bug** Long story short, there are subtle differences in how chrome renders colors in transformed elements (especially in case of rotation) in headed vs headless mode, which seems...
**Describe the bug** cy.task('cypress-plugin-snapshot:matchImage') timed out after waiting 60000ms **To Reproduce** not sure, sometimes the tests work sometimes they timeout. it may be related to live developing tests. after closing...
I get this error in the Chrome viewport of Cypress when using `cypress-plugin-snapshots`: ``` Error: Cannot find module './nonIterableSpread' from '/path/to/my/project/node_modules/jimp/browser/lib' ``` I followed the installation instructions from the README.md...
I run the same exact test multiple time, which basically opens up a static page and compares screens each time the screen shot is slightly different as if its ignoring...
**Is your feature request related to a problem? Please describe.** `require('cypress-plugin-snapshots/plugin')` looks ugly. **Describe the solution you'd like** `require('cypress-plugin-snapshots')`
Hey, it's me again. The current snapshots are saved in the relative path of the test spec file, under `__snapshots__` folder. To improve the performance, we introduce an `index_spec.js` to...
As a new user I feel the docs are lacking like a good 'tutorial' article to spread it's usage. I'm trying to learn and be able to write that but...
**Describe the bug** I'm able to generate comparison screenshots thanks to #54, but when I click on ` COMPARE SNAPSHOT` I just get the following in the dev tools console:...