Skip to content

Commit 841bf18

Browse files
authored
Merge pull request #222 from refactor-group/221-bug-transition-between-simple-toolbar-and-floating-toolbar-sometimes-has-jumpy-behavior
221 bug transition between simple toolbar and floating toolbar sometimes has jumpy behavior.
2 parents 0dbf169 + 50234cb commit 841bf18

File tree

12 files changed

+660
-91
lines changed

12 files changed

+660
-91
lines changed

.claude/CLAUDE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# refactor-platform-fe Project Instructions
2+
3+
## Mandatory File Consultations
4+
5+
**Code Implementation/Editing** → Read `.claude/coding-standards.md` FIRST
6+
**Pull Request Operations** → Read `.claude/pr-instructions.md` FIRST
7+
8+
## Rules
9+
- Project standards override global defaults on conflict
10+
- Validate all code against standards before task completion
11+
- PR reviews require both files if coding standards referenced

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,14 @@ npm run test:e2e
117117

118118
### Test Structure
119119

120-
- **`__tests__/`** - Unit and integration tests
121-
- `stores/` - State management logic tests
122-
- `hooks/` - React hooks integration tests
123-
- `components/` - UI component tests
124-
- **`e2e/`** - End-to-end browser tests
120+
- **`__tests__/`** - Unit, integration, and E2E tests (mirrors `src/` structure)
121+
- `components/ui/` - UI component tests (mirrors `src/components/ui/`)
122+
- `lib/stores/` - State management logic tests (mirrors `src/lib/stores/`)
123+
- `lib/hooks/` - React hooks integration tests (mirrors `src/lib/hooks/`)
125124
- **`src/test-utils/`** - Testing utilities and mocks
126125

126+
**Note**: E2E tests (`.spec.ts` files) are now organized alongside unit tests in the `__tests__/` directory, mirroring the source code structure for easier navigation and maintenance.
127+
127128
### Debugging Tests
128129

129130
If tests fail, you can:

0 commit comments

Comments
 (0)