mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 15:50:13 +00:00
feat(karma-jasmine-html-reporter): update to 1.5.3 (#43371)
- new `suppressAll` option - minor TS header change https://github.com/dfederm/karma-jasmine-html-reporter/compare/v1.5.2...v1.5.3 Thanks!
This commit is contained in:
committed by
GitHub
parent
8c6769fb4a
commit
68783aa55b
6
types/karma-jasmine-html-reporter/index.d.ts
vendored
6
types/karma-jasmine-html-reporter/index.d.ts
vendored
@@ -1,6 +1,6 @@
|
||||
// Type definitions for karma-jasmine-html-reporter 1.5
|
||||
// Project: https://github.com/dfederm/karma-jasmine-html-reporter#readme
|
||||
// Definitions by: Piotr Błażejewicz (Peter Blazejewicz) <https://github.com/peterblazejewicz>
|
||||
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
@@ -16,6 +16,10 @@ declare module 'karma' {
|
||||
jasmineHtmlReporter?: JasmineHtmlReporterOptions;
|
||||
}
|
||||
interface JasmineHtmlReporterOptions {
|
||||
/**
|
||||
* Suppress all messages (overrides other suppress settings)
|
||||
*/
|
||||
suppressAll?: boolean;
|
||||
/** Suppress failed messages */
|
||||
suppressFailed?: boolean;
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ module.exports = (config: karma.Config) => {
|
||||
reporters: ['progress', 'kjhtml', 'mocha'],
|
||||
browsers: ['Chrome'],
|
||||
jasmineHtmlReporter: {
|
||||
suppressAll: true,
|
||||
suppressFailed: true,
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user