├── .gitignore ├── .travis.yml ├── app ├── action-capture.js ├── action-compare.js ├── cli │ ├── argumentLoader.js │ └── userConfigLoader.js ├── log.js ├── phantomjs-script.js └── util.js ├── appveyor.yml ├── bin └── argus-eyes.js ├── contributing.md ├── npm-shrinkwrap.json ├── package.json ├── readme.md └── tests ├── fixtures ├── capture │ ├── credentials │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── credentials.json │ ├── ignored-element │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── ignored-element.json │ ├── known-negatives │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── known-negatives.json │ ├── known-positives │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── known-positives.json │ ├── phantomjs-flags │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── phantomjs-flags.json │ ├── run-script │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ ├── run-script.json │ │ └── scripts │ │ │ ├── script1.js │ │ │ ├── script2.js │ │ │ └── script3.js │ ├── slugified-identifiers │ │ └── slugified-identifiers.json │ ├── valid.json │ ├── wait-for-delay │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── wait-for-delay.json │ └── wait-for-script │ │ ├── baseline │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ │ ├── scripts │ │ ├── script1.js │ │ ├── script2.js │ │ └── script3.js │ │ ├── wait-for-script-multiple.json │ │ └── wait-for-script.json ├── compare │ ├── known-negatives-different-sizes │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ ├── known-negatives │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ ├── known-positives-different-sizes │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ ├── known-positives-effectively │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ ├── known-positives-missing-left │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ ├── known-positives-missing-right │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ └── footer.png │ ├── known-positives-slashes │ │ ├── shots-baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── shots-current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ ├── known-positives │ │ ├── baseline │ │ │ └── 768x1024 │ │ │ │ └── homepage │ │ │ │ ├── footer.png │ │ │ │ └── header.png │ │ └── current │ │ │ └── 768x1024 │ │ │ └── homepage │ │ │ ├── footer.png │ │ │ └── header.png │ └── valid.json └── configtest │ ├── invalid-components.json │ ├── invalid-json.json │ ├── invalid-pages.json │ ├── invalid-phantomjs-flags.json │ ├── invalid-sizes.json │ ├── invalid-wait-for-delay.json │ ├── invalid-wait-for-script-finished-when.json │ ├── invalid-wait-for-script.json │ ├── missing-components.json │ ├── missing-pages.json │ ├── missing-sizes.json │ └── valid-json.json ├── mock-server ├── contact.html ├── credentials.html ├── index-effectively-correct.html ├── index-ignored-element.html ├── index-incorrect.html ├── index-no-fonts.html ├── index-phantom-config.html ├── index-run-script.html ├── index-wait-for-delay.html ├── index-wait-for-script-multiple.html ├── index-wait-for-script.html └── index.html ├── runner.js └── spec ├── capture.js ├── compare.js ├── configtest.js ├── help.js └── version.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/.travis.yml -------------------------------------------------------------------------------- /app/action-capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/action-capture.js -------------------------------------------------------------------------------- /app/action-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/action-compare.js -------------------------------------------------------------------------------- /app/cli/argumentLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/cli/argumentLoader.js -------------------------------------------------------------------------------- /app/cli/userConfigLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/cli/userConfigLoader.js -------------------------------------------------------------------------------- /app/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/log.js -------------------------------------------------------------------------------- /app/phantomjs-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/phantomjs-script.js -------------------------------------------------------------------------------- /app/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/app/util.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/argus-eyes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/bin/argus-eyes.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/contributing.md -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/readme.md -------------------------------------------------------------------------------- /tests/fixtures/capture/credentials/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/credentials/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/credentials/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/credentials/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/credentials/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/credentials/credentials.json -------------------------------------------------------------------------------- /tests/fixtures/capture/ignored-element/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/ignored-element/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/ignored-element/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/ignored-element/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/ignored-element/ignored-element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/ignored-element/ignored-element.json -------------------------------------------------------------------------------- /tests/fixtures/capture/known-negatives/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/known-negatives/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/known-negatives/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/known-negatives/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/known-negatives/known-negatives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/known-negatives/known-negatives.json -------------------------------------------------------------------------------- /tests/fixtures/capture/known-positives/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/known-positives/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/known-positives/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/known-positives/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/known-positives/known-positives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/known-positives/known-positives.json -------------------------------------------------------------------------------- /tests/fixtures/capture/phantomjs-flags/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/phantomjs-flags/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/phantomjs-flags/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/phantomjs-flags/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/phantomjs-flags/phantomjs-flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/phantomjs-flags/phantomjs-flags.json -------------------------------------------------------------------------------- /tests/fixtures/capture/run-script/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/run-script/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/run-script/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/run-script/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/run-script/run-script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/run-script/run-script.json -------------------------------------------------------------------------------- /tests/fixtures/capture/run-script/scripts/script1.js: -------------------------------------------------------------------------------- 1 | document.querySelector('.footer').classList.add('active1'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/capture/run-script/scripts/script2.js: -------------------------------------------------------------------------------- 1 | document.querySelector('.footer').classList.add('active2'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/capture/run-script/scripts/script3.js: -------------------------------------------------------------------------------- 1 | document.querySelector('.footer').classList.add('active3'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/capture/slugified-identifiers/slugified-identifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/slugified-identifiers/slugified-identifiers.json -------------------------------------------------------------------------------- /tests/fixtures/capture/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/valid.json -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-delay/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-delay/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-delay/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-delay/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-delay/wait-for-delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-delay/wait-for-delay.json -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-script/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-script/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/scripts/script1.js: -------------------------------------------------------------------------------- 1 | return !!window._waitForScript1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/scripts/script2.js: -------------------------------------------------------------------------------- 1 | return !!window._waitForScript2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/scripts/script3.js: -------------------------------------------------------------------------------- 1 | return !!window._waitForScript3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/wait-for-script-multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-script/wait-for-script-multiple.json -------------------------------------------------------------------------------- /tests/fixtures/capture/wait-for-script/wait-for-script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/capture/wait-for-script/wait-for-script.json -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives-different-sizes/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives-different-sizes/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives-different-sizes/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives-different-sizes/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives-different-sizes/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives-different-sizes/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives-different-sizes/current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives-different-sizes/current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-negatives/current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-negatives/current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-different-sizes/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-different-sizes/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-different-sizes/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-different-sizes/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-different-sizes/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-different-sizes/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-different-sizes/current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-different-sizes/current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-effectively/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-effectively/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-effectively/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-effectively/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-effectively/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-effectively/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-effectively/current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-effectively/current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-missing-left/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-missing-left/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-missing-left/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-missing-left/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-missing-left/current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-missing-left/current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-missing-right/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-missing-right/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-missing-right/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-missing-right/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-missing-right/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-missing-right/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-slashes/shots-baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-slashes/shots-baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-slashes/shots-baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-slashes/shots-baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-slashes/shots-current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-slashes/shots-current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives-slashes/shots-current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives-slashes/shots-current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives/baseline/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives/baseline/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives/baseline/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives/baseline/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives/current/768x1024/homepage/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives/current/768x1024/homepage/footer.png -------------------------------------------------------------------------------- /tests/fixtures/compare/known-positives/current/768x1024/homepage/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/known-positives/current/768x1024/homepage/header.png -------------------------------------------------------------------------------- /tests/fixtures/compare/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/compare/valid.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-components.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-json.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-pages.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-phantomjs-flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-phantomjs-flags.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-sizes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-sizes.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-wait-for-delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-wait-for-delay.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-wait-for-script-finished-when.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-wait-for-script-finished-when.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/invalid-wait-for-script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/invalid-wait-for-script.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/missing-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/missing-components.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/missing-pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/missing-pages.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/missing-sizes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/missing-sizes.json -------------------------------------------------------------------------------- /tests/fixtures/configtest/valid-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/fixtures/configtest/valid-json.json -------------------------------------------------------------------------------- /tests/mock-server/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/contact.html -------------------------------------------------------------------------------- /tests/mock-server/credentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/credentials.html -------------------------------------------------------------------------------- /tests/mock-server/index-effectively-correct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-effectively-correct.html -------------------------------------------------------------------------------- /tests/mock-server/index-ignored-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-ignored-element.html -------------------------------------------------------------------------------- /tests/mock-server/index-incorrect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-incorrect.html -------------------------------------------------------------------------------- /tests/mock-server/index-no-fonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-no-fonts.html -------------------------------------------------------------------------------- /tests/mock-server/index-phantom-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-phantom-config.html -------------------------------------------------------------------------------- /tests/mock-server/index-run-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-run-script.html -------------------------------------------------------------------------------- /tests/mock-server/index-wait-for-delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-wait-for-delay.html -------------------------------------------------------------------------------- /tests/mock-server/index-wait-for-script-multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-wait-for-script-multiple.html -------------------------------------------------------------------------------- /tests/mock-server/index-wait-for-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index-wait-for-script.html -------------------------------------------------------------------------------- /tests/mock-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/mock-server/index.html -------------------------------------------------------------------------------- /tests/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/runner.js -------------------------------------------------------------------------------- /tests/spec/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/spec/capture.js -------------------------------------------------------------------------------- /tests/spec/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/spec/compare.js -------------------------------------------------------------------------------- /tests/spec/configtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/spec/configtest.js -------------------------------------------------------------------------------- /tests/spec/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/spec/help.js -------------------------------------------------------------------------------- /tests/spec/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguseyes/argus-eyes/HEAD/tests/spec/version.js --------------------------------------------------------------------------------