We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This isn't an issue per-se, but in case anyone needs to include all iframes in their coverage numbers, you can modify the context script as follows:
for (const page of context.pages()) { await page.evaluate(() => (window as any).collectIstanbulCoverage(JSON.stringify((window as any).__coverage__)) ); for (const frame of context.frames()) { await frame.evaluate(() => (window as any).collectIstanbulCoverage(JSON.stringify((window as any).__coverage__)) ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This isn't an issue per-se, but in case anyone needs to include all iframes in their coverage numbers, you can modify the context script as follows:
The text was updated successfully, but these errors were encountered: