Commit 4c0387b5 authored by smartcontracts's avatar smartcontracts Committed by GitHub

feat: allow arguments to contracts test recipe (#13152)

Adds the ability to supply arguments to the "just test" recipe in
the contracts package. Developers frequently need to add arguments
to test specific contracts and running "just test" as the unified
testing command is better than flipping to "forge test".
parent b2f66287
...@@ -54,8 +54,8 @@ clean: ...@@ -54,8 +54,8 @@ clean:
######################################################## ########################################################
# Runs standard contract tests. # Runs standard contract tests.
test: build-go-ffi test *ARGS: build-go-ffi
forge test forge test {{ARGS}}
# Runs standard contract tests with rerun flag. # Runs standard contract tests with rerun flag.
test-rerun: build-go-ffi test-rerun: build-go-ffi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment