Skip to content

Commit 5721eea

Browse files
author
Illia Obukhau
authored
fix(run-e2e): log error on unzip failure (#210)
2 parents 77145ae + 8b9a30c commit 5721eea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

automation/run-e2e/lib/setup-test-project.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ export async function setupTestProject() {
4242

4343
await updateAtlas();
4444
} catch (e) {
45-
throw new Error("Failed to unzip the test project into tests/testProject", e.message);
45+
console.error(e);
46+
throw new Error("Failed to unzip the test project into tests/testProject");
4647
}
4748
}
4849

0 commit comments

Comments
 (0)