grunt-phantomcss
grunt-phantomcss copied to clipboard
A grunt task for CSS regression testing using PhantomCSS
**Hi,** according to #17 this is a new try for a pull request with a fresh rebased implementation of mismatch tolerance setting. Caused by animations on my test cases, there...
I tried to take a screenshot of a page which loads some content asynchronously. A screenshot is taken but the asynchronously elements are not displayed. There was an error like...
At the moment, grunt task doesn't work when you use it via npm. It works only if you clone the repo and run task there. I fixed this and checked...
Currently I run phantomcss tests using the following command. `casperjs test --xunit=results.xml --ssl-protocol=tlsv1` Is there a way to pass options such as `--xunit`, `--ssl-protocol` from the `Gruntfile.js` to the underlying...
Hello, I wrote the following in my grunfile.js: ``` phantomcss: { desktop: { options: { screenshots: 'tests/visual-regression/screenshots/baseline', results: 'tests/visual-regression/screenshots/results', viewportSize: [1280, 1024] }, src: ['test/visual-regression/**/*_spec.js'] }, mobile: { options: {...
Hi, Thank you for your work. I have seen that it it possible to define the test results xunit file using casperjs ... --xunit='file.xml'. Is it possible to achieve the...
Hi, I may be missing something simple but I don't think the current task supports specifying the mismatch tolerance on the shots - I've made a couple of simple changes...
Guys, I am trying to setup custom headers but it seems not to work. The way I am setting up the header is this ... casper.start(); tests.forEach(function (test) { ```...