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
5 changes: 5 additions & 0 deletions .claude/skills/update-doc-references/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
name: update-doc-references
description: Analyze source-file changes referenced by documentation, update affected docs when needed, and report documentation reference updates for a PR.
---

# Update Documentation References

When source files referenced by documentation change in a PR, analyze the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,9 @@ describe('NativeWorldState', () => {
await expect(delayedFork.getSiblingPath(MerkleTreeId.NULLIFIER_TREE, 0n)).rejects.toThrow('Fork not found');

await sleep(closeDelayMs * 3);
const closePromise = (delayedFork as any).closePromise;
expect(closePromise).toBeDefined();
await closePromise;

expect(warnSpy).not.toHaveBeenCalled();
expect((ws as any).instance.queues.has(forkId)).toBe(false);
Expand Down
Loading