├── .eslintrc ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── chai.js ├── index.d.ts ├── jest-puppeteer.config.js ├── jest.js ├── jestWithConfig.js ├── lib ├── chai.js ├── jest.js ├── jestWithConfig.js ├── matcherGenerator.js ├── toMatchEyesScreenshot.js └── utils.js ├── matchLevel.js ├── package.json ├── pom.xml ├── setupTestFrameworkScriptFile.js └── tests ├── __fixtures__ ├── jest-default │ ├── conf.json │ ├── setupTestFrameworkScriptFile.js │ └── test.jest.js ├── jest-with-config │ ├── conf.json │ ├── setupTestFrameworkScriptFile.js │ └── test.jest.js └── test.mocha.js ├── toMatchScreenshot.driver.js ├── toMatchScreenshotChai.test.js └── toMatchScreenshotJest.test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .env -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tests -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/README.md -------------------------------------------------------------------------------- /chai.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/chai'); 2 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/index.d.ts -------------------------------------------------------------------------------- /jest-puppeteer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/jest-puppeteer.config.js -------------------------------------------------------------------------------- /jest.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/jest'); 2 | -------------------------------------------------------------------------------- /jestWithConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/jestWithConfig.js -------------------------------------------------------------------------------- /lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/lib/chai.js -------------------------------------------------------------------------------- /lib/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/lib/jest.js -------------------------------------------------------------------------------- /lib/jestWithConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/lib/jestWithConfig.js -------------------------------------------------------------------------------- /lib/matcherGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/lib/matcherGenerator.js -------------------------------------------------------------------------------- /lib/toMatchEyesScreenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/lib/toMatchEyesScreenshot.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/lib/utils.js -------------------------------------------------------------------------------- /matchLevel.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@applitools/eyes-images').MatchLevel; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/pom.xml -------------------------------------------------------------------------------- /setupTestFrameworkScriptFile.js: -------------------------------------------------------------------------------- 1 | require('./lib/jest.js'); 2 | -------------------------------------------------------------------------------- /tests/__fixtures__/jest-default/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/jest-default/conf.json -------------------------------------------------------------------------------- /tests/__fixtures__/jest-default/setupTestFrameworkScriptFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/jest-default/setupTestFrameworkScriptFile.js -------------------------------------------------------------------------------- /tests/__fixtures__/jest-default/test.jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/jest-default/test.jest.js -------------------------------------------------------------------------------- /tests/__fixtures__/jest-with-config/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/jest-with-config/conf.json -------------------------------------------------------------------------------- /tests/__fixtures__/jest-with-config/setupTestFrameworkScriptFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/jest-with-config/setupTestFrameworkScriptFile.js -------------------------------------------------------------------------------- /tests/__fixtures__/jest-with-config/test.jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/jest-with-config/test.jest.js -------------------------------------------------------------------------------- /tests/__fixtures__/test.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/__fixtures__/test.mocha.js -------------------------------------------------------------------------------- /tests/toMatchScreenshot.driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/toMatchScreenshot.driver.js -------------------------------------------------------------------------------- /tests/toMatchScreenshotChai.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/toMatchScreenshotChai.test.js -------------------------------------------------------------------------------- /tests/toMatchScreenshotJest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/match-screenshot/HEAD/tests/toMatchScreenshotJest.test.js --------------------------------------------------------------------------------