Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub struct Config {
- Don't import libraries for specific tests, import them at the top level instead

### Test Modification Policy
Treat existing tests as immutable. If an existing test fails or seems to need modification, ask for confirmation before changing it—the test may be catching a regression. This does not apply to new tests written as part of the current work, meaning the new content introduced in the current branch or PR.
Existing tests should be treated as correct unless they are genuinely broken or poorly scoped. If a test is truly broken (testing the wrong thing, asserting incorrect behavior, or not well scoped), fix or update it. If a test fails and you suspect it may be catching a real regression, ask for confirmation before changing it. This policy does not apply to new tests written as part of the current work.

### Project structure
- Do not re-export dependencies from `crates/` in mod.rs or lib.rs files. Refer to the full path instead.
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ members = [
"tests/e2e/runner",
"tests/e2e-gcs/runner",
]
exclude = [
"contracts/stylus/attestation-verifier",
]

[workspace.package]
version = "0.1.0"
Expand Down
Loading
Loading