-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fix(test): fix hanging nuxt-5 e2e test #21177
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
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| strict-peer-deps = false |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,8 +13,8 @@ | |
| "test": "playwright test", | ||
| "test:prod": "TEST_ENV=production playwright test", | ||
| "test:dev": "bash ./nuxt-start-dev-server.bash && TEST_ENV=development playwright test environment", | ||
| "test:build": "pnpm install && pnpm build", | ||
| "test:build-canary": "pnpm add nuxt@npm:nuxt-nightly@latest && pnpm add nitro@npm:nitro-nightly@latest && pnpm install --force && pnpm build", | ||
| "test:build": "npm install && pnpm build", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. npm ignores pnpm overridesMedium Severity E2E setup injects pinned Sentry packages via Reviewed by Cursor Bugbot for commit eeaf782. Configure here. |
||
| "test:build-canary": "pnpm add nuxt@npm:nuxt-nightly@latest && pnpm add nitro@npm:nitro-nightly@latest && npm install --force && pnpm build", | ||
| "test:assert": "pnpm test:prod && pnpm test:dev" | ||
| }, | ||
| "//": [ | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
npm rejects link devDependency
High Severity
test:buildnow runsnpm install, but@sentry-internal/test-utilsis declared with the pnpm-onlylink:protocol indevDependencies. npm does not supportlink:and typically fails withEUNSUPPORTEDPROTOCOL, so the build step can fail beforepnpm buildruns.Reviewed by Cursor Bugbot for commit eeaf782. Configure here.