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
Copy file name to clipboardExpand all lines: .cursor/rules/TESTING_GUIDELINES.md
+74Lines changed: 74 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -376,6 +376,80 @@ test('User can create, customize, and delete a resource', async ({ page }) => {
376
376
- Use unique identifiers (timestamps, UUIDs) for test data
377
377
- Helper functions should be local to the test file unless truly reusable across multiple test files
378
378
379
+
### Parallel Test Execution Between Projects
380
+
381
+
When tests run in parallel across different browser projects (e.g., Chromium, Firefox), they share the same backend state. To avoid conflicts, **create project-specific resources** for each browser.
0 commit comments