Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/karma-junit-reporter

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/karma-junit-reporter

TypeScript definitions for karma-junit-reporter

  • 2.0.4
  • ts4.5
  • ts4.6
  • ts4.7
  • ts4.8
  • ts4.9
  • ts5.0
  • ts5.1
  • ts5.2
  • ts5.3
  • ts5.4
  • ts5.5
  • ts5.6
  • ts5.7
  • ts5.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.6K
increased by9.21%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

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

Summary

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

Details

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

index.d.ts

import "karma";

declare module "karma" {
    interface ConfigOptions {
        junitReporter?: JUnitReporterConfiguration | undefined;
    }

    interface JUnitReporterConfiguration {
        /** results will be saved as $outputDir/$browserName.xml */
        outputDir?: string | undefined;
        /** if included, results will be saved as $outputDir/$browserName/$outputFile */
        outputFile?: string | undefined;
        /** suite will become the package name attribute in xml testsuite element */
        suite?: string | undefined;
        /** add browser name to report and classes names */
        useBrowserName?: boolean | undefined;
        /** function (browser, result) to customize the name attribute in xml testcase element */
        nameFormatter?: ((browser: any, result: any) => string) | undefined;
        /** function (browser, result) to customize the classname attribute in xml testcase element */
        classNameFormatter?: ((browser: any, result: any) => string) | undefined;
        /** key value pair of properties to add to the <properties> section of the report */
        properties?: {
            [key: string]: any;
        } | undefined;
        /** use '1' if reporting to be per SonarQube 6.2 XML format */
        xmlVersion?: number | null | undefined;
    }
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:38 GMT
  • Dependencies: @types/karma

Credits

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

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc