We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98fc018 commit 7012f47Copy full SHA for 7012f47
packages/create-cloudflare/e2e/tests/frameworks/test-config.ts
@@ -1,5 +1,6 @@
1
import { detectPackageManager } from "../../../src/helpers/packageManagers";
2
import {
3
+ CLOUDFLARE_API_TOKEN,
4
frameworkToTestFilter,
5
isExperimental,
6
keys,
@@ -981,7 +982,10 @@ function getExperimentalFrameworkTestConfig(
981
982
testCommitMessage: true,
983
unsupportedOSs: ["win32"],
984
unsupportedPms: ["npm", "yarn"],
- quarantine: true,
985
+ // this test creates an R2 bucket, so it requires a Cloudflare API token
986
+ // and needs to be skipped on forks
987
+ quarantine: !CLOUDFLARE_API_TOKEN,
988
+ timeout: LONG_TIMEOUT,
989
verifyDeploy: {
990
route: "/",
991
expectedText: "Generated by create next app",
0 commit comments