Skip to content

Commit 4554cde

Browse files
committed
Update api files
1 parent 4fcc343 commit 4554cde

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

common/reviews/api/node-library-build.api.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,13 @@ interface IFixupSettingsOptions {
180180
mustBeCommonJsOrEsnext: boolean;
181181
}
182182

183-
// @public
183+
// @alpha
184184
interface IJestConfig {
185-
configFilePath?: string;
185+
collectCoverageFrom?: string[];
186186
coverage?: boolean;
187+
coverageReporters?: string[];
187188
isEnabled?: boolean;
189+
testPathIgnorePatterns?: string[];
188190
}
189191

190192
// @public
@@ -196,7 +198,7 @@ interface ITsConfigFile<T> {
196198
compilerOptions: T;
197199
}
198200

199-
// @public
201+
// @alpha
200202
class JestTask extends GulpTask<IJestConfig> {
201203
constructor();
202204
// (undocumented)

common/reviews/api/web-library-build.api.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,13 @@ interface IFixupSettingsOptions {
180180
mustBeCommonJsOrEsnext: boolean;
181181
}
182182

183-
// @public
183+
// @alpha
184184
interface IJestConfig {
185-
configFilePath?: string;
185+
collectCoverageFrom?: string[];
186186
coverage?: boolean;
187+
coverageReporters?: string[];
187188
isEnabled?: boolean;
189+
testPathIgnorePatterns?: string[];
188190
}
189191

190192
// @public
@@ -211,7 +213,7 @@ interface IWebpackTaskConfig {
211213
webpack?: typeof Webpack;
212214
}
213215

214-
// @public
216+
// @alpha
215217
class JestTask extends GulpTask<IJestConfig> {
216218
constructor();
217219
// (undocumented)

0 commit comments

Comments
 (0)