1.0.2 • Published 9 months ago

@distinction-dev/jasmine-console-reporter v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Jasmine Console Reporter

Jasmine Console Reporter class for detailed test results into console.

Install

npm install @distinction-dev/jasmine-console-reporter

or

yarn add @distinction-dev/jasmine-console-reporter

Usage

import Jasmine from "jasmine";
import ConsoleReporter from "@distinction-dev/jasmine-console-reporter";

const jasmine: Jasmine = new Jasmine();
const consoleReporter: ConsoleReporter = new ConsoleReporter();

jasmine.loadConfigFile("test/support/jasmine.json");
jasmine.addReporter(consoleReporter);
jasmine.configureDefaultReporter({
  showColors: true,
});

jasmine.execute();
1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago