https://github.com/bcaudan/jasmine-spec-reporter
Real time console spec reporter for jasmine testing framework
https://github.com/bcaudan/jasmine-spec-reporter
jasmine protractor reporter spec typescript
Last synced: 7 months ago
JSON representation
Real time console spec reporter for jasmine testing framework
- Host: GitHub
- URL: https://github.com/bcaudan/jasmine-spec-reporter
- Owner: bcaudan
- License: apache-2.0
- Created: 2014-04-06T12:23:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:22:10.000Z (almost 3 years ago)
- Last Synced: 2024-10-29T17:35:07.272Z (12 months ago)
- Topics: jasmine, protractor, reporter, spec, typescript
- Language: TypeScript
- Homepage: https://github.com/bcaudan/jasmine-spec-reporter
- Size: 1.52 MB
- Stars: 254
- Watchers: 7
- Forks: 56
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# jasmine-spec-reporter
[](https://api.dependabot.com/badges/status?host=github&repo=bcaudan/jasmine-spec-reporter)
[](https://travis-ci.org/bcaudan/jasmine-spec-reporter)
[](https://codecov.io/gh/bcaudan/jasmine-spec-reporter)Real time console spec reporter for jasmine testing framework.

# Usage
## Installation
Install `jasmine-spec-reporter` via npm:
npm install jasmine-spec-reporter --save-dev
## Examples
- [Jasmine node tests](examples/node)
- [Protractor tests](examples/protractor)
- [TypeScript support](examples/typescript)## Configuration
See full configuration and features: [configuration.ts](src/configuration.ts)
## Custom output
You can customize the output of the reporter yourself: [see how](docs/customize-output.md).
# Development
## Requirements
- npm >= 5
## Commands
- install dependencies: `npm install`
- launch unit tests: `npm test`
- launch integration tests: `npm run test:integration`## Debugging
Unit tests hijack `console.log` to verify output; use `console.warn` to debug.