puppeteer/website/versioned_docs/version-17.1.3/api/puppeteer.coverage.startjscoverage.md
release-please[bot] 9b120f6c7b
chore(main): release 17.1.3 (#8921)
* chore(main): release 17.1.3

* chore: generate versioned docs

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2022-09-08 13:16:39 +00:00

1.3 KiB

sidebar_label
Coverage.startJSCoverage

Coverage.startJSCoverage() method

Signature:

class Coverage {
  startJSCoverage(options?: JSCoverageOptions): Promise<void>;
}

Parameters

Parameter Type Description
options JSCoverageOptions (Optional) Set of configurable options for coverage defaults to resetOnNavigation : true, reportAnonymousScripts : false

Returns:

Promise<void>

Promise that resolves when coverage is started.

Remarks

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).