Skip to content

Commit 8b9a30c

Browse files
author
Illia Obukhau
committed
fix(run-e2e): log error on unzip failure
1 parent 71b8d1f commit 8b9a30c

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)