Skip to content

Commit

Permalink
C3: Bump node version in e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jculvey committed Aug 30, 2023
1 parent 4b60277 commit 8855aad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-c3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- packages/create-cloudflare/**

env:
node-version: 16.14
node-version: 18.17.1

jobs:
check:
Expand Down
4 changes: 3 additions & 1 deletion packages/create-cloudflare/e2e-tests/pages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Areas for future improvement:
- Add support for frameworks with global installs (like docusaurus, gatsby, etc)
*/

const TEST_TIMEOUT = 1000 * 60 * 3;

type FrameworkTestConfig = RunnerConfig & {
expectResponseToContain: string;
testCommitMessage: boolean;
Expand Down Expand Up @@ -234,7 +236,7 @@ describe.concurrent(`E2E: Web frameworks`, () => {
frameworkTests[framework].testCommitMessage
);
},
{ retry: 3, timeout: 1000 * 60 * 3 }
{ retry: 3, timeout: TEST_TIMEOUT }
);
});

Expand Down

0 comments on commit 8855aad

Please sign in to comment.