Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
jest-playwright-istanbul
Advanced tools
Collect code coverage information from end-to-end jest chromium tests.
This is a fork of ocavue/jest-puppeteer-istanbul, if you are using puppeteer, i would suggest using original library. it has been modified and added a function to manually passing a page to a function and setting the coverage.
yarn add -D jest-playwright-istanbul
// or
npm install -D jest-playwright-istanbul
Make sure that you have Jest and Babel installed and configured.
Install babel-plugin-istanbul
and add it to your Babel config.
You should ONLY use this plugin when you are in development mode. This plugin will add a lot of code for keeping track of the coverage statements. You definitely won't want them in your final production code.
Babel configuration examples:
// .babelrc.js
const plugins = [
/* Your babel plugins */
]
if (process.env.NODE_ENV === "development") {
plugins.push("istanbul")
}
module.exports = {
plugins: plugins,
}
// babel.config.json
{
plugins: [
// Your babel plugins
],
env: {
development: {
plugins: ["istanbul"],
},
},
}
Update your Jest configuration:
json
to coverageReporters
. Since the defualt value of coverageReporters
has json
inclued, you don't need to change coverageReporters
if you havn't specify it.jest-playwright-istanbul/lib/reporter
to reporters
.Set coverage using function as follow:
import { setCoverage } from "jest-playwright-istanbul"
await setCoverage(page)
Alternatively If chromium page available globally do as follow:
Update your Jest configuration:
jest-playwright-istanbul/lib/setup
to setupFilesAfterEnv
.Notice:
If custom reporters are specified, the default Jest reporters will be overridden. To keep default reporters,
default
can be passed as a module name.
A Jest configuration example:
{
coverageReporters: ["json", "text", "lcov"],
setupFilesAfterEnv: ["jest-playwright-istanbul/lib/setup"],
reporters: ["default", "jest-playwright-istanbul/lib/reporter"],
collectCoverage: true,
}
If you use jest-chromium, jest-chromium will make page globally available. Otherwise you can set page globally as follow:
beforeAll(async () => {
const browser = await chromium.launch()
const page = await browser.newPage()
global.page = page
})
describe("E2E Tests", () => {
test(async () => {
/* Your test code */
})
})
FAQs
Collect code coverage information from end-to-end jest chromium tests.
The npm package jest-playwright-istanbul receives a total of 7 weekly downloads. As such, jest-playwright-istanbul popularity was classified as not popular.
We found that jest-playwright-istanbul demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.