File tree 5 files changed +5
-5
lines changed
test/integration/create-next-app
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export const createNextApp = (
42
42
delete cloneEnv . RUN_ID
43
43
delete cloneEnv . BUILD_NUMBER
44
44
45
- cloneEnv . NEXT_PRIVATE_TEST_VERSION = '14.2.3 '
45
+ cloneEnv . NEXT_PRIVATE_TEST_VERSION = testVersion ?? 'latest '
46
46
47
47
return spawn ( 'node' , [ cli ] . concat ( args ) , {
48
48
...options ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ let testVersion
6
6
beforeAll ( async ( ) => {
7
7
// TODO: investigate moving this post publish or create deployed GH#57025
8
8
// tarballs to avoid these failing while a publish is in progress
9
- testVersion = 'canary '
9
+ testVersion = 'latest '
10
10
// const span = new Span({ name: 'parent' })
11
11
// testVersion = (
12
12
// await createNextInstall({ onlyPackages: true, parentSpan: span })
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ beforeAll(async () => {
11
11
if ( testVersion ) return
12
12
// TODO: investigate moving this post publish or create deployed GH#57025
13
13
// tarballs to avoid these failing while a publish is in progress
14
- testVersion = 'canary '
14
+ testVersion = 'latest '
15
15
// const span = new Span({ name: 'parent' })
16
16
// testVersion = (
17
17
// await createNextInstall({ onlyPackages: true, parentSpan: span })
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ let testVersion
10
10
beforeAll ( async ( ) => {
11
11
// TODO: investigate moving this post publish or create deployed GH#57025
12
12
// tarballs to avoid these failing while a publish is in progress
13
- testVersion = 'canary '
13
+ testVersion = 'latest '
14
14
// const span = new Span({ name: 'parent' })
15
15
// testVersion = (
16
16
// await createNextInstall({ onlyPackages: true, parentSpan: span })
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const run = (
30
30
env : {
31
31
...process . env ,
32
32
...options . env ,
33
- NEXT_PRIVATE_TEST_VERSION : '14.2.3 ' ,
33
+ NEXT_PRIVATE_TEST_VERSION : 'latest ' ,
34
34
} ,
35
35
} )
36
36
You can’t perform that action at this time.
0 commit comments