1.0.0 • Published 2 years ago

jest-playwright-webstorm-stub v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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

  1. Script calls yarn e2e or npm run e2e script, so you should have one defined in scripts section of your package.json
  2. Add resolutions
{
  "scripts": {
    "e2e": "playwright test --config=src/playwright.config.ts"
  },
  "resolutions": {
    "jest": "jest-playwright-webstorm-stub@1.0.0"
  }
}
1.0.0

2 years ago