Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def setUp(self):
def _set_esbuild_binary_path(self):
npm = SubprocessNpm(self.osutils)
esbuild_dir = os.path.join(self.TEST_DATA_FOLDER, "esbuild-binary")
npm.run(["ci"], cwd=esbuild_dir)
npm.run(["install"], cwd=esbuild_dir)
self.root_path = npm.run(["root"], cwd=esbuild_dir)
self.binpath = Path(self.root_path, ".bin")

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

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

self.builder.build(
Expand Down