Skip to content

Commit 1c94380

Browse files
authored
Merge branch 'develop' into rust-cargo-lambda-workflow
2 parents 44b3742 + cefc331 commit 1c94380

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/workflows/nodejs_npm_esbuild/test_nodejs_npm_with_esbuild.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def setUp(self):
3232
def _set_esbuild_binary_path(self):
3333
npm = SubprocessNpm(self.osutils)
3434
esbuild_dir = os.path.join(self.TEST_DATA_FOLDER, "esbuild-binary")
35-
npm.run(["ci"], cwd=esbuild_dir)
35+
npm.run(["install"], cwd=esbuild_dir)
3636
self.root_path = npm.run(["root"], cwd=esbuild_dir)
3737
self.binpath = Path(self.root_path, ".bin")
3838

@@ -169,7 +169,7 @@ def test_bundles_project_without_dependencies(self, runtime):
169169
osutils = OSUtils()
170170
npm = SubprocessNpm(osutils)
171171
esbuild_dir = os.path.join(self.TEST_DATA_FOLDER, "esbuild-binary")
172-
npm.run(["ci"], cwd=esbuild_dir)
172+
npm.run(["install"], cwd=esbuild_dir)
173173
binpath = Path(npm.run(["root"], cwd=esbuild_dir), ".bin")
174174

175175
self.builder.build(
@@ -195,7 +195,7 @@ def test_builds_project_with_remote_dependencies_without_download_dependencies_w
195195
osutils = OSUtils()
196196
npm = SubprocessNpm(osutils)
197197
esbuild_dir = os.path.join(self.TEST_DATA_FOLDER, "esbuild-binary")
198-
npm.run(["ci"], cwd=esbuild_dir)
198+
npm.run(["install"], cwd=esbuild_dir)
199199
binpath = Path(npm.run(["root"], cwd=esbuild_dir), ".bin")
200200

201201
self.builder.build(

0 commit comments

Comments
 (0)