v1s10n_4

Results 3 comments of v1s10n_4

I got the same issue with: ```json "@storybook/jest": "^0.0.10", "@storybook/test-runner": "^0.0.8", "@storybook/testing-library": "^0.0.11", "@storybook/addon-essentials": "^6.4.22", ``` it result as: ``` TypeError: Jest: Got error running globalSetup - /Users/v1s10n_4/code/flaneer/app-flaneer/node_modules/@storybook/test-runner/playwright/global-setup.js, reason: Class...

Looks like this issue is related to [storybookjs/test-runner#99](https://github.com/storybookjs/test-runner/issues/99) According to this [answer](https://github.com/storybookjs/test-runner/issues/99#issuecomment-1112605412) it can be fixed by matching some dependencies version needed by `jest-playwright`: ```json "jest": "^27.5.1", "jest-runner": "^27.5.1", "jest-environment-node":...