Skip to content

Commit

Permalink
unpin CNA tests from 14.2.3
Browse files Browse the repository at this point in the history
this reverts the change from 564b620
  • Loading branch information
lubieowoce committed Sep 9, 2024
1 parent 747d365 commit 9a72ad6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/integration/create-next-app/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const createNextApp = (
delete cloneEnv.RUN_ID
delete cloneEnv.BUILD_NUMBER

cloneEnv.NEXT_PRIVATE_TEST_VERSION = '14.2.3'
cloneEnv.NEXT_PRIVATE_TEST_VERSION = testVersion ?? 'latest'

return spawn('node', [cli].concat(args), {
...options,
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/prompts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let testVersion
beforeAll(async () => {
// TODO: investigate moving this post publish or create deployed GH#57025
// tarballs to avoid these failing while a publish is in progress
testVersion = 'canary'
testVersion = 'latest'
// const span = new Span({ name: 'parent' })
// testVersion = (
// await createNextInstall({ onlyPackages: true, parentSpan: span })
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/templates/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ beforeAll(async () => {
if (testVersion) return
// TODO: investigate moving this post publish or create deployed GH#57025
// tarballs to avoid these failing while a publish is in progress
testVersion = 'canary'
testVersion = 'latest'
// const span = new Span({ name: 'parent' })
// testVersion = (
// await createNextInstall({ onlyPackages: true, parentSpan: span })
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/templates/pages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let testVersion
beforeAll(async () => {
// TODO: investigate moving this post publish or create deployed GH#57025
// tarballs to avoid these failing while a publish is in progress
testVersion = 'canary'
testVersion = 'latest'
// const span = new Span({ name: 'parent' })
// testVersion = (
// await createNextInstall({ onlyPackages: true, parentSpan: span })
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const run = (
env: {
...process.env,
...options.env,
NEXT_PRIVATE_TEST_VERSION: '14.2.3',
NEXT_PRIVATE_TEST_VERSION: 'latest',
},
})

Expand Down

0 comments on commit 9a72ad6

Please sign in to comment.