├── .circleci └── config.yml ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── License.md ├── README.md ├── index.js ├── package.json └── test └── index.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: 0ZWr7jfVBJKPaoVe2IjvtzhtatJbrYn5h 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/package.json -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgee123/karma-spec-reporter/HEAD/test/index.spec.js --------------------------------------------------------------------------------