2022-07-05 13:41:43 +00:00
---
sidebar_label: Coverage.startJSCoverage
---
# Coverage.startJSCoverage() method
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Coverage {
startJSCoverage(options?: JSCoverageOptions): Promise< void > ;
}
```
## Parameters
2023-02-23 12:31:23 +00:00
| Parameter | Type | Description |
| --------- | ----------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| options | [JSCoverageOptions ](./puppeteer.jscoverageoptions.md ) | _(Optional)_ Set of configurable options for coverage defaults to < code > resetOnNavigation : true, reportAnonymousScripts : false,</ code > < code > includeRawScriptCoverage : false, useBlockCoverage : true</ code > |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise< void>
Promise that resolves when coverage is started.
## Remarks
2022-09-08 05:56:26 +00:00
Anonymous scripts are ones that don't have an associated url. These are scripts that are dynamically created on the page using `eval` or `new Function` . If `reportAnonymousScripts` is set to `true` , anonymous scripts URL will start with `debugger://VM` (unless a magic //\# sourceURL comment is present, in which case that will the be URL).