We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cbe7cb commit 01bc43eCopy full SHA for 01bc43e
1 file changed
AGENTS.md
@@ -31,6 +31,14 @@ Run a specific test by name:
31
go tool gno test -run TestPacketValidateBasic ./gno.land/p/aib/ibc/types
32
```
33
34
+Run a single **filetest**: `-run` must match the full path to the test file,
35
+not just its name. A bare prefix like `-run z5a_` silently matches nothing (the
36
+run reports `ok` without executing the filetest); the pattern has to start with
37
+the package path:
38
+```bash
39
+go tool gno test -run ./gno.land/r/aib/ibc/apps/transfer/z5a_ ./gno.land/r/aib/ibc/apps/transfer/
40
+```
41
+
42
Update filetest golden output (`// Output:` and `// Events:` sections) automatically:
43
```bash
44
go tool gno test -update-golden-tests ./gno.land/r/aib/ibc/apps/transfer/
0 commit comments