{"id":14385202,"url":"https://github.com/JamieMason/karma-nested-reporter","last_synced_at":"2025-08-23T18:31:53.118Z","repository":{"id":12177189,"uuid":"14776840","full_name":"JamieMason/karma-nested-reporter","owner":"JamieMason","description":"Easy to read test output with nested describe and it blocks","archived":false,"fork":false,"pushed_at":"2019-06-20T11:45:37.000Z","size":94,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-08-06T23:54:47.114Z","etag":null,"topics":["karma","karma-reporter","test-reporting"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/karma-nested-reporter","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JamieMason.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-28T12:53:11.000Z","updated_at":"2019-08-04T17:23:10.000Z","dependencies_parsed_at":"2022-09-13T20:30:29.853Z","dependency_job_id":null,"html_url":"https://github.com/JamieMason/karma-nested-reporter","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fkarma-nested-reporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fkarma-nested-reporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fkarma-nested-reporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fkarma-nested-reporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JamieMason","download_url":"https://codeload.github.com/JamieMason/karma-nested-reporter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":217384940,"owners_count":16168827,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["karma","karma-reporter","test-reporting"],"created_at":"2024-08-28T18:02:01.763Z","updated_at":"2024-08-28T18:06:44.512Z","avatar_url":"https://github.com/JamieMason.png","language":"JavaScript","funding_links":["https://www.paypal.me/foldleft"],"categories":["JavaScript"],"sub_categories":[],"readme":"# karma-nested-reporter\n\n\u003e A Karma plugin. Report results with each describe indented.\n\n[![NPM version](http://img.shields.io/npm/v/karma-nested-reporter.svg?style=flat-square)](https://www.npmjs.com/package/karma-nested-reporter)\n[![NPM downloads](http://img.shields.io/npm/dm/karma-nested-reporter.svg?style=flat-square)](https://www.npmjs.com/package/karma-nested-reporter)\n[![Dependency Status](http://img.shields.io/david/JamieMason/karma-nested-reporter.svg?style=flat-square)](https://david-dm.org/JamieMason/karma-nested-reporter)\n[![Gitter Chat for karma-nested-reporter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/JamieMason/karma-nested-reporter)\n[![Donate via PayPal](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/foldleft)\n[![Donate via Gratipay](https://img.shields.io/gratipay/user/JamieMason.svg)](https://gratipay.com/~JamieMason/)\n[![Analytics](https://ga-beacon.appspot.com/UA-45466560-5/karma-nested-reporter?flat\u0026useReferer)](https://github.com/igrigorik/ga-beacon)\n[![Follow JamieMason on GitHub](https://img.shields.io/github/followers/JamieMason.svg?style=social\u0026label=Follow)](https://github.com/JamieMason)\n[![Follow fold_left on Twitter](https://img.shields.io/twitter/follow/fold_left.svg?style=social\u0026label=Follow)](https://twitter.com/fold_left)\n\n![screenshot of karma nested reporter](https://github.com/JamieMason/karma-nested-reporter/blob/master/karma-nested-reporter.png)\n\n## Installation\n\nThe easiest way is to keep `karma-nested-reporter` as a devDependency in your `package.json`:\n\n```json\n{\n  \"devDependencies\": {\n    \"karma\": \"\u003e=0.9\",\n    \"karma-nested-reporter\": \"0.1.5\"\n  }\n}\n```\n\nYou can simply do it with:\n\n```\nnpm install karma-nested-reporter --save-dev\n```\n\n## Enabling this reporter\n\nIt's recommended that you use this reporter **instead of** the `progress` reporter.\n\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n  config.set({\n    reporters: ['nested']\n  });\n};\n```\n\nYou can pass list of reporters as a CLI argument too:\n\n```bash\nkarma start --reporters nested\n```\n\n## Optional Configuration\n\n### Default values\n\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n  config.set({\n    nestedReporter: {\n      color: {\n        should: 'red',\n        browser: 'yellow'\n      },\n      icon: {\n        failure: '✘ ',\n        indent: 'ட ',\n        browser: ''\n      }\n    }\n  });\n};\n```\n\n### Colors\n\nThis reporter will output in color if `colors: true` is present in your Karma configuration.\n\nColors can be optionally overridden with any of the values defined by\n[chalk's colors and styles](https://github.com/chalk/chalk).\n\n### Icons\n\nIf the **✘** for example isn't your thing, or it doesn't display in your Terminal, this and the\nother icons can be substituted for others.\n\n## The Karma Test Runner\n\nFor more information on Karma see the [homepage](http://karma-runner.github.com).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJamieMason%2Fkarma-nested-reporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJamieMason%2Fkarma-nested-reporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJamieMason%2Fkarma-nested-reporter/lists"}