@types/karma-spec-reporter
TypeScript definitions for karma-spec-reporter
Last updated 4 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/karma-spec-reporter 
SYNC missed versions from official npm registry.

Installation

npm install --save @types/karma-spec-reporter

Summary

This package contains type definitions for karma-spec-reporter (https://github.com/mlex/karma-spec-reporter#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/karma-spec-reporter.

index.d.ts

// Type definitions for karma-spec-reporter 0.0
// Project: https://github.com/mlex/karma-spec-reporter#readme
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import 'karma';

declare module 'karma' {
    interface ConfigOptions {
        /**
         * {@link https://github.com/mlex/karma-spec-reporter#configuration}
         */
        specReporter?: SpecReporterOptions | undefined;
    }

    interface SpecReporterOptions {
        /** limit number of lines logged per test */
        maxLogLines?: number | undefined;
        /** do not print error summary */
        suppressErrorSummary?: boolean | undefined;
        /** do not print information about failed tests */
        suppressFailed?: boolean | undefined;
        /** do not print information about passed tests */
        suppressPassed?: boolean | undefined;
        /** do not print information about skipped tests */
        suppressSkipped?: boolean | undefined;
        /** do not print summary  */
        suppressSummary?: boolean | undefined;
        /** print the time elapsed for each spec */
        showSpecTiming?: boolean | undefined;
        /** test would finish with error when a first fail occurs */
        failFast?: boolean | undefined;
        /** custom prefixes to use when reporting passed/failed/skipped prefixes */
        prefixes?:
            | {
                  success?: string | undefined;
                  failure?: string | undefined;
                  skipped?: string | undefined;
              }
            | undefined;
    }
}

Additional Details

  • Last updated: Sun, 20 Feb 2022 16:01:27 GMT
  • Dependencies: @types/karma
  • Global values: none

Credits

These definitions were written by Piotr Błażejewicz.

Current Tags

  • 0.0.3                                ...           latest (4 years ago)
  • 0.0.0                                ...           ts3.2 (6 years ago)
  • 0.0.1                                ...           ts3.3 (5 years ago)
  • 0.0.1                                ...           ts3.4 (5 years ago)
  • 0.0.1                                ...           ts3.5 (5 years ago)
  • 0.0.2                                ...           ts3.6 (5 years ago)
  • 0.0.2                                ...           ts3.7 (5 years ago)
  • 0.0.3                                ...           ts3.8 (4 years ago)
  • 0.0.3                                ...           ts3.9 (4 years ago)
  • 0.0.3                                ...           ts4.0 (4 years ago)
  • 0.0.3                                ...           ts4.1 (4 years ago)
  • 0.0.3                                ...           ts4.2 (4 years ago)
  • 0.0.3                                ...           ts4.3 (4 years ago)
  • 0.0.3                                ...           ts4.4 (4 years ago)
  • 0.0.3                                ...           ts4.5 (4 years ago)
  • 0.0.3                                ...           ts4.6 (4 years ago)
  • 0.0.3                                ...           ts4.7 (4 years ago)
  • 0.0.3                                ...           ts4.8 (4 years ago)
  • 0.0.3                                ...           ts4.9 (4 years ago)

4 Versions

  • 0.0.3                                ...           4 years ago
  • 0.0.2                                ...           5 years ago
  • 0.0.1                                ...           5 years ago
  • 0.0.0                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org | Home |