Fix e2e issues #4759
Labels
status:ready
This issue is ready to be worked on
type:chore
A task related to code quality, tooling, CI, or anything that doesn't directly impact the end users
Our e2e tests have a several issues:
mktemp -d
, although I think/tmp
is valid in the three runners used by the CI)npx
is always used, but it should only be used fornpm
.yarn
andpnpm
should use their own versions (which is just the same command; that is:npx hardhat
,yarn hardhat
andpnpm hardhat
)bash
will be always used. This means thatecho
might not interpret\n
(it doesn't do it in the CI nor on my machine), so we should useprintf
instead.When I fixed some of these things (not sure which one), the CI started failing for windows+pnpm, so we should look into that.
The text was updated successfully, but these errors were encountered: