cypress-plugin-snapshots icon indicating copy to clipboard operation
cypress-plugin-snapshots copied to clipboard

Plugin for snapshot tests in Cypress.io

Results 120 cypress-plugin-snapshots issues
Sort by recently updated
recently updated
newest added

**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...

bug

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...

bug
toMatchImageSnapshot

**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...

bug

**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...

bug

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...

bug

**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')`

enhancement

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...

enhancement

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...

enhancement

**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:...

bug