Skip to content

Commit

Permalink
skip react on yarn
Browse files Browse the repository at this point in the history
The create-vite app wants to process the npm_config_user_agent to get the version of yarn,
but for some reason this gets stripped by the fact we are faking it and actually running pnpx.
  • Loading branch information
petebacondarwin committed Feb 19, 2025
1 parent 3105cc4 commit 82250e4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/create-cloudflare/e2e-tests/frameworks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ function getFrameworkTests(opts: {
input: [keys.enter],
},
],
unsupportedOSs: ["win32"],
unsupportedPms: ["yarn"],
testCommitMessage: true,
verifyDeploy: {
route: "/",
Expand Down Expand Up @@ -552,6 +554,7 @@ function getFrameworkTests(opts: {
],
testCommitMessage: true,
unsupportedOSs: ["win32"],
unsupportedPms: ["yarn"],
timeout: LONG_TIMEOUT,
verifyDeploy: {
route: "/",
Expand Down Expand Up @@ -759,6 +762,7 @@ const runCli = async (
NO_DEPLOY ? "--no-deploy" : "--deploy",
"--no-open",
"--no-git",
"--no-auto-update",
];

args.push(...argv);
Expand Down

0 comments on commit 82250e4

Please sign in to comment.