1.1.4 • Published 2 years ago

@types/karma-material-reporter v1.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

Installation

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

Summary

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

Details

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

index.d.ts

// Type definitions for karma-material-reporter 1.1
// Project: https://github.com/ameerthehacker/karma-material-reporter#readme
// Definitions by: Piotr Błażejewicz (Peter Blazejewicz) <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.2

import 'karma';

declare module 'karma' {
    interface ConfigOptions {
        /**
         * Visualize karma test results in real time with material designed reporter
         * See {@link https://github.com/ameerthehacker/karma-material-reporter#availble-configurations}
         */
        materialReporter?: MaterialReporterOptions | undefined;
    }

    interface MaterialReporterOptions {
        /**
         * port in which the reporter startes a express server
         * @default 3000
         */
        serverPort?: number | undefined;
        /**
         * whether to open the reporter UI automatically in the default browser
         * @default true
         */
        autoOpen?: boolean | undefined;
        /**
         * expand all the expandable suite menus
         * @default true
         */
        expandSuites?: boolean | undefined;
    }
}

Additional Details

  • Last updated: Thu, 08 Jul 2021 16:23:07 GMT
  • Dependencies: @types/karma
  • Global values: none

Credits

These definitions were written by Piotr Błażejewicz (Peter Blazejewicz).

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

4 years ago

1.1.0

5 years ago