jest-playwright-webstorm-stub
v1.0.0
Published
Script substitutes the Jest package with Playwright launcher. It won't produce the best possible output as normal Jest tests, but at least test will run (when you click on `>` icon near test).
Downloads
2
Readme
Jest Playwright Webstorm Stub
Script substitutes the Jest package with Playwright launcher. It won't produce the best possible output as normal Jest tests, but at least test will run (when you click on >
icon near test).
This is a nasty hack for while https://youtrack.jetbrains.com/issue/WEB-51965#focus=Comments-27-5759458.0-0 is not fixed.
Usage
- Script calls
yarn e2e
ornpm run e2e
script, so you should have one defined inscripts
section of yourpackage.json
- Add
resolutions
{
"scripts": {
"e2e": "playwright test --config=src/playwright.config.ts"
},
"resolutions": {
"jest": "[email protected]"
}
}