Skip to content

Commit

Permalink
verify once
Browse files Browse the repository at this point in the history
  • Loading branch information
lerouxb committed Dec 18, 2024
1 parent 2badcfd commit 17f4152
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/compass-e2e-tests/smoke-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,7 @@ async function run() {
extension,
});

if (context.skipDownload) {
verifyPackagesExist(packages);
} else {
if (!context.skipDownload) {
await Promise.all(
packages.map(async ({ name, filepath }) => {
await fs.mkdir(path.dirname(filepath), { recursive: true });
Expand All @@ -159,9 +157,10 @@ async function run() {
return downloadFile(url, filepath);
})
);
verifyPackagesExist(packages);
}

verifyPackagesExist(packages);

// TODO(COMPASS-8533): extract or install each package and then test the Compass binary
}

Expand Down

0 comments on commit 17f4152

Please sign in to comment.