You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix IAsyncInitializer order when using nested property injection (#4036)
* fix IAsyncInitializer order when using nested property injection
* fix: enhance direct property detection for injected properties in object graph discovery
Copy file name to clipboardExpand all lines: CLAUDE.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,6 +147,17 @@ dotnet test TUnit.Core.SourceGenerator.Tests
147
147
148
148
**Rule**: Only run TUnit.TestProject with explicit `--treenode-filter` to target specific tests or classes.
149
149
150
+
**IMPORTANT: Run filters ONE AT A TIME!** Using OR patterns (`Pattern1|Pattern2`) can match thousands of unintended tests. Always run one specific filter per command:
151
+
152
+
```bash
153
+
# ❌ WRONG - OR patterns can match too broadly
154
+
--treenode-filter "/*/*/ClassA/*|/*/*/ClassB/*"
155
+
156
+
# ✅ CORRECT - Run separate commands for each class
0 commit comments