-
Notifications
You must be signed in to change notification settings - Fork 90
perf: v1 state multi nullify #2349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
0caad00
3b7291d
3365adc
16b5985
513749e
bc36a49
8efe3bc
d9087d2
f60eda8
6a8a115
bd865d5
2a2d2da
b2400ae
fc3b88c
69f2d92
3354c88
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -177,6 +177,11 @@ go test -run TestLightweight -timeout 15m | |||||||||||||
| End-to-end tests for the off-chain tree maintenance service. | ||||||||||||||
|
|
||||||||||||||
| ```bash | ||||||||||||||
| # Using just (preferred, from forester/ directory): | ||||||||||||||
| just -f forester/justfile local # Run e2e test without rebuilding SBF programs | ||||||||||||||
| just -f forester/justfile test # Build SBF test deps first, then run e2e test | ||||||||||||||
|
|
||||||||||||||
| # Or directly: | ||||||||||||||
| TEST_MODE=local cargo test --package forester e2e_test -- --nocapture | ||||||||||||||
| ``` | ||||||||||||||
|
Comment on lines
+184
to
186
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial Add a This section currently documents only local mode; adding devnet keeps the test entrypoints complete for both supported environments. 🧪 Suggested addition # Or directly:
TEST_MODE=local cargo test --package forester e2e_test -- --nocapture
+TEST_MODE=devnet cargo test --package forester e2e_test -- --nocaptureBased on learnings: "Run E2E tests with TEST_MODE=local cargo test for local validator testing or TEST_MODE=devnet for devnet testing". 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the working-directory mismatch in the Forester
justcommands.Line 180 says “from
forester/directory”, but Line 181 and Line 182 use-f forester/justfile, which is a repository-root invocation pattern.🛠️ Suggested doc fix
📝 Committable suggestion
🤖 Prompt for AI Agents