-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
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
chore: remove manual __esModule override #28935
Conversation
This comment has been minimized.
This comment has been minimized.
Related to #28875. |
playwright/tests/playwright-test/basic.spec.ts Lines 240 to 252 in 19a4f15
The test is failing because: import t from '@playwright/test' is expecting playwright/packages/playwright/test.mjs Line 33 in 19a4f15
The playwright/packages/playwright/src/index.ts Line 746 in 19a4f15
This can be addressed if you wish by doing: combinedExports.test = Object.assign(combinedExports.test, combinedExports); In packages/playwright/test.js
in packages/playwright/test.mjs OR both 😺 |
53a65d4
to
5ccba07
Compare
Sounds good, I'll try with module.exports = Object.assign(combinedExports.test, combinedExports); |
Test results for "tests 1"3 flaky14852 passed, 310 skipped Merge workflow run. |
No description provided.