Skip to content

Commit 7693596

Browse files
committed
Update fixtures (node 14.x deprecated)
1 parent 7047612 commit 7693596

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

integration/caching_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ func testCaching(t *testing.T, context spec.G, it spec.S) {
204204

205205
build := pack.Build.
206206
WithPullPolicy("never").
207-
WithEnv(map[string]string{"BP_NODE_VERSION": "~14"}).
207+
WithEnv(map[string]string{"BP_NODE_VERSION": "~18"}).
208208
WithBuildpacks(
209209
settings.Buildpacks.NodeEngine.Online,
210210
settings.Buildpacks.NPMInstall.Online,
@@ -233,7 +233,7 @@ func testCaching(t *testing.T, context spec.G, it spec.S) {
233233

234234
build = pack.Build.
235235
WithPullPolicy("never").
236-
WithEnv(map[string]string{"BP_NODE_VERSION": "~16"}).
236+
WithEnv(map[string]string{"BP_NODE_VERSION": "~20"}).
237237
WithBuildpacks(
238238
settings.Buildpacks.NodeEngine.Online,
239239
settings.Buildpacks.NPMInstall.Online,

integration/testdata/locked_app/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/testdata/locked_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"url": ""
1616
},
1717
"engines": {
18-
"node": "~14"
18+
"node": "~16"
1919
}
2020
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
18
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
18

integration/versioning_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func testVersioning(t *testing.T, context spec.G, it spec.S) {
3131
})
3232

3333
context("when using a nvmrc file", func() {
34-
const nvmrcVersion = `14.\d+\.\d+`
34+
const nvmrcVersion = `18.\d+\.\d+`
3535

3636
var (
3737
image occam.Image

0 commit comments

Comments
 (0)