Skip to content

Commit 7012f47

Browse files
[create-cloudflare] Unquarantine Next.js experimental e2e test and increase timeout (#12843)
1 parent 98fc018 commit 7012f47

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/create-cloudflare/e2e/tests/frameworks/test-config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { detectPackageManager } from "../../../src/helpers/packageManagers";
22
import {
3+
CLOUDFLARE_API_TOKEN,
34
frameworkToTestFilter,
45
isExperimental,
56
keys,
@@ -981,7 +982,10 @@ function getExperimentalFrameworkTestConfig(
981982
testCommitMessage: true,
982983
unsupportedOSs: ["win32"],
983984
unsupportedPms: ["npm", "yarn"],
984-
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,
985989
verifyDeploy: {
986990
route: "/",
987991
expectedText: "Generated by create next app",

0 commit comments

Comments
 (0)