# jasmine-reporter-console

> A basic console reporter for jasmine. Written with ES6. Will require transpiling on older versions of node.

Latest version **1.1.0** (published 2016-11-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install jasmine-reporter-console
pnpm add jasmine-reporter-console
yarn add jasmine-reporter-console
bun add jasmine-reporter-console
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2016-11-14 |
| First published | 2016-11-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | skuttleman@gmail.com |
| Maintainers | skuttleman |
| Keywords | jasmine, reporter, node, unit, test, testing |

## Links

- npm: https://www.npmjs.com/package/jasmine-reporter-console
- npm.io page: https://npm.io/package/jasmine-reporter-console

## Dependencies (1)

- [colors](https://npm.io/package/colors.md) ^1.1.2

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2016-11-14
- 1.0.1 — 2016-11-12
- 1.0.0 — 2016-11-12

## README

# Jasmine Reporter Console

A simple jasmine reporter designed to display a reasonable level of output for your unit tests.

## Installation

```bash
$ npm install --save-dev jasmine-node-reporter
```

## Usage

In your helpers folder.

```js
const ConsoleReporter = require('jasmine-reporter-console');

jasmine.getEnv().clearReporters(); //Disables jasmine's default terse reporter

jasmine.getEnv().addReporter(new ConsoleReporter);
```

## Notes

For more information about how to use and configure jasmine, visit their [website](https://jasmine.github.io/).

---
_Source: https://npm.io/package/jasmine-reporter-console · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
