├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gruntfile.js ├── index.js ├── junit-schema.xsd ├── package.json ├── sonar-unit-tests.xsd └── test ├── .eslintrc └── reporter.spec.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/README.md -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/index.js -------------------------------------------------------------------------------- /junit-schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/junit-schema.xsd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/package.json -------------------------------------------------------------------------------- /sonar-unit-tests.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/sonar-unit-tests.xsd -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/reporter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-junit-reporter/HEAD/test/reporter.spec.js --------------------------------------------------------------------------------