Skip to content

Commit

Permalink
Remove @DefaultValue
Browse files Browse the repository at this point in the history
  • Loading branch information
hashseed committed Jun 29, 2020
1 parent 0679dcb commit f65cd4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion new-docs/puppeteer.coverage.startcsscoverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ startCSSCoverage(options?: CSSCoverageOptions): Promise<void>;

| Parameter | Type | Description |
| --- | --- | --- |
| options | [CSSCoverageOptions](./puppeteer.csscoverageoptions.md) | |
| options | [CSSCoverageOptions](./puppeteer.csscoverageoptions.md) | defaults to <code>{ resetOnNavigation : true }</code> |

<b>Returns:</b>

Expand Down
2 changes: 1 addition & 1 deletion new-docs/puppeteer.coverage.startjscoverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ startJSCoverage(options?: JSCoverageOptions): Promise<void>;

| Parameter | Type | Description |
| --- | --- | --- |
| options | [JSCoverageOptions](./puppeteer.jscoverageoptions.md) | |
| options | [JSCoverageOptions](./puppeteer.jscoverageoptions.md) | defaults to <code>{ resetOnNavigation : true, reportAnonymousScripts : false }</code> |

<b>Returns:</b>

Expand Down
4 changes: 2 additions & 2 deletions src/common/Coverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class Coverage {
}

/**
* @param options - @defaultValue \{ resetOnNavigation : true, reportAnonymousScripts : false \}
* @param options - defaults to `{ resetOnNavigation : true, reportAnonymousScripts : false }`
* @returns Promise that resolves when coverage is started.
*
* @remarks
Expand All @@ -143,7 +143,7 @@ export class Coverage {
}

/**
* @param options - @defaultValue \{ resetOnNavigation : true \}
* @param options - defaults to `{ resetOnNavigation : true }`
* @returns Promise that resolves when coverage is started.
*/
async startCSSCoverage(
Expand Down

0 comments on commit f65cd4f

Please sign in to comment.