├── .github └── workflows │ └── test.yml ├── .gitignore ├── .jshintrc ├── LICENSE.txt ├── README.md ├── docs ├── CHANGELOG.md ├── example-custom.css ├── protractor.example.conf └── protractor.sharding-example.conf ├── gulpfile.js ├── index.js ├── package.json └── test └── index.spec.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/README.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/example-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/docs/example-custom.css -------------------------------------------------------------------------------- /docs/protractor.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/docs/protractor.example.conf -------------------------------------------------------------------------------- /docs/protractor.sharding-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/docs/protractor.sharding-example.conf -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/package.json -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlison/protractor-jasmine2-screenshot-reporter/HEAD/test/index.spec.js --------------------------------------------------------------------------------