├── .babelrc ├── .gitignore ├── .jshintrc ├── .npmignore ├── .nycrc.json ├── .travis.yml ├── CHANGES.md ├── LICENSE.md ├── README.md ├── app ├── reporter.js └── util.js ├── examples ├── Gruntfile.js ├── package.json ├── protractor.jasmine2-useajax.conf.js ├── protractor.jasmine2.conf.js ├── protractor.jasmine2.with.sharding.conf.js ├── protractor.jasmine2.with.sharding.sort.conf.js ├── protractor.jasmine2.with.sharding.sort2.conf.js ├── reports │ └── 19-8-2018 │ │ ├── app.js │ │ ├── assets │ │ ├── angular.min.js │ │ ├── assets │ │ │ └── css │ │ │ │ └── buttons.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.js │ │ ├── buttons.html │ │ ├── buttons.js │ │ ├── jquery.min.js │ │ ├── main.css │ │ └── main.js │ │ ├── combined.json │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ ├── should contain log and pretty stack trace-angularjs homepage.png │ │ └── should fail as greeting text is different-angularjs homepage.png │ │ ├── jsons │ │ ├── pending test case 1-pending describe-angularjs homepage.json │ │ ├── pending test case 2-pending describe-angularjs homepage.json │ │ ├── should add a todo-todo list-angularjs homepage.json │ │ ├── should be displayed as pending test case-todo list-angularjs homepage.json │ │ ├── should contain log and pretty stack trace-angularjs homepage.json │ │ ├── should display first todo with proper text-todo list-angularjs homepage.json │ │ ├── should fail as greeting text is different-angularjs homepage.json │ │ ├── should greet the named user-angularjs homepage.json │ │ └── should list todos-todo list-angularjs homepage.json │ │ └── report.html └── specs │ ├── PageObject.js │ └── example_spec.js ├── images ├── Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png ├── html-report.png ├── inline-screenshot.png ├── more-details.png ├── sauce_labs.svg ├── screenshot.png ├── search.png └── stack-highlight.png ├── index.js ├── jasmine.json ├── karma.conf.js ├── lib ├── app.js ├── assets │ ├── angular.min.js │ ├── bootstrap.css │ ├── bootstrap.min.js │ ├── buttons.js │ ├── circular-json.js │ ├── favicon.ico │ ├── jquery.min.js │ ├── main.css │ └── main.js ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── pbr-screenshot-modal.html └── pbr-stack-modal.html ├── package.json ├── tests ├── README.md ├── app │ ├── app_test.js │ ├── lib │ │ └── angular-mocks │ │ │ ├── LICENSE.md │ │ │ ├── angular-mocks.js │ │ │ ├── ngAnimateMock.js │ │ │ ├── ngMock.js │ │ │ └── ngMockE2E.js │ ├── test_data.js │ └── time_data.js ├── jasmine.runner.js └── reporter │ ├── reporter_test.js │ ├── test_data.js │ ├── util_basic_test.js │ └── util_metadata_test.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/.nycrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/README.md -------------------------------------------------------------------------------- /app/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/app/reporter.js -------------------------------------------------------------------------------- /app/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/app/util.js -------------------------------------------------------------------------------- /examples/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/Gruntfile.js -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/protractor.jasmine2-useajax.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/protractor.jasmine2-useajax.conf.js -------------------------------------------------------------------------------- /examples/protractor.jasmine2.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/protractor.jasmine2.conf.js -------------------------------------------------------------------------------- /examples/protractor.jasmine2.with.sharding.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/protractor.jasmine2.with.sharding.conf.js -------------------------------------------------------------------------------- /examples/protractor.jasmine2.with.sharding.sort.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/protractor.jasmine2.with.sharding.sort.conf.js -------------------------------------------------------------------------------- /examples/protractor.jasmine2.with.sharding.sort2.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/protractor.jasmine2.with.sharding.sort2.conf.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/app.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/angular.min.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/assets/css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/assets/css/buttons.css -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/bootstrap.css -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/bootstrap.min.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/buttons.html -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/buttons.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/jquery.min.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/main.css -------------------------------------------------------------------------------- /examples/reports/19-8-2018/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/assets/main.js -------------------------------------------------------------------------------- /examples/reports/19-8-2018/combined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/combined.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/reports/19-8-2018/images/should contain log and pretty stack trace-angularjs homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/images/should contain log and pretty stack trace-angularjs homepage.png -------------------------------------------------------------------------------- /examples/reports/19-8-2018/images/should fail as greeting text is different-angularjs homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/images/should fail as greeting text is different-angularjs homepage.png -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/pending test case 1-pending describe-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/pending test case 1-pending describe-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/pending test case 2-pending describe-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/pending test case 2-pending describe-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should add a todo-todo list-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should add a todo-todo list-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should be displayed as pending test case-todo list-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should be displayed as pending test case-todo list-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should contain log and pretty stack trace-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should contain log and pretty stack trace-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should display first todo with proper text-todo list-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should display first todo with proper text-todo list-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should fail as greeting text is different-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should fail as greeting text is different-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should greet the named user-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should greet the named user-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/jsons/should list todos-todo list-angularjs homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/jsons/should list todos-todo list-angularjs homepage.json -------------------------------------------------------------------------------- /examples/reports/19-8-2018/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/reports/19-8-2018/report.html -------------------------------------------------------------------------------- /examples/specs/PageObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/specs/PageObject.js -------------------------------------------------------------------------------- /examples/specs/example_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/examples/specs/example_spec.js -------------------------------------------------------------------------------- /images/Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/Sauce-Labs_Horiz_Red-Grey_RGB_200x28.png -------------------------------------------------------------------------------- /images/html-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/html-report.png -------------------------------------------------------------------------------- /images/inline-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/inline-screenshot.png -------------------------------------------------------------------------------- /images/more-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/more-details.png -------------------------------------------------------------------------------- /images/sauce_labs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/sauce_labs.svg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/search.png -------------------------------------------------------------------------------- /images/stack-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/images/stack-highlight.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/index.js -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/jasmine.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/app.js -------------------------------------------------------------------------------- /lib/assets/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/angular.min.js -------------------------------------------------------------------------------- /lib/assets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/bootstrap.css -------------------------------------------------------------------------------- /lib/assets/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/bootstrap.min.js -------------------------------------------------------------------------------- /lib/assets/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/buttons.js -------------------------------------------------------------------------------- /lib/assets/circular-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/circular-json.js -------------------------------------------------------------------------------- /lib/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/favicon.ico -------------------------------------------------------------------------------- /lib/assets/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/jquery.min.js -------------------------------------------------------------------------------- /lib/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/main.css -------------------------------------------------------------------------------- /lib/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/assets/main.js -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/index.html -------------------------------------------------------------------------------- /lib/pbr-screenshot-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/pbr-screenshot-modal.html -------------------------------------------------------------------------------- /lib/pbr-stack-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/lib/pbr-stack-modal.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/package.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/app/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/app/app_test.js -------------------------------------------------------------------------------- /tests/app/lib/angular-mocks/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/app/lib/angular-mocks/LICENSE.md -------------------------------------------------------------------------------- /tests/app/lib/angular-mocks/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/app/lib/angular-mocks/angular-mocks.js -------------------------------------------------------------------------------- /tests/app/lib/angular-mocks/ngAnimateMock.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngAnimateMock'; 3 | -------------------------------------------------------------------------------- /tests/app/lib/angular-mocks/ngMock.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngMock'; 3 | -------------------------------------------------------------------------------- /tests/app/lib/angular-mocks/ngMockE2E.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngMockE2E'; 3 | -------------------------------------------------------------------------------- /tests/app/test_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/app/test_data.js -------------------------------------------------------------------------------- /tests/app/time_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/app/time_data.js -------------------------------------------------------------------------------- /tests/jasmine.runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/jasmine.runner.js -------------------------------------------------------------------------------- /tests/reporter/reporter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/reporter/reporter_test.js -------------------------------------------------------------------------------- /tests/reporter/test_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/reporter/test_data.js -------------------------------------------------------------------------------- /tests/reporter/util_basic_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/reporter/util_basic_test.js -------------------------------------------------------------------------------- /tests/reporter/util_metadata_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/tests/reporter/util_metadata_test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evilweed/protractor-beautiful-reporter/HEAD/webpack.config.js --------------------------------------------------------------------------------