-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(evm): evmante validate basic full coverage
- Loading branch information
Showing
34 changed files
with
1,877 additions
and
3,965 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ ui-debug.log | |
/public/ | ||
.env | ||
firebase-debug.log | ||
**/bun.lockb | ||
out-* | ||
exit-status-* | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
18 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Use this justfile by | ||
# (1) installing with "cargo install just" | ||
# (2) running the "just" command. | ||
|
||
# Displays available recipes by running `just -l`. | ||
setup: | ||
#!/usr/bin/env bash | ||
just -l | ||
|
||
# Install all dependencies | ||
install: | ||
#!/usr/bin/env bash | ||
# Check if the given binary is in the $PATH. | ||
the_cmd="bun" | ||
if which "$the_cmd" >/dev/null 2>&1; then | ||
echo "✅ bun is installed." | ||
else | ||
log_error "$the_cmd is not present in \$PATH" | ||
npm install -g bun@1.1.12 | ||
fi | ||
|
||
bun install | ||
|
||
# Generate types from compiled contracts | ||
gen-types: | ||
bun run typechain --target=ethers-v6 contracts/*Compiled.json | ||
|
||
# Runs the E2E tests | ||
test: | ||
bun test | ||
|
||
# Format | ||
fmt: | ||
bun run prettier --write "test/**/*.ts" |
Oops, something went wrong.