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: CLAUDE.md
+19-8Lines changed: 19 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Just Bangs Lite is a client-side search tool with bang shortcuts (e.g., `python
13
13
-**`public_html/main.js`**: Simple entry point that ONLY calls `initialize()` - no additional code or functions
14
14
-**`public_html/index.html`**: Loads both scripts sequentially (search.js then main.js)
15
15
16
-
**IMPORTANT**: main.js exists solely to separate the function library (search.js) from execution for Jest compatibility. Adding any additional code or functions to main.js will break this separation and cause testing issues.
16
+
**IMPORTANT**: main.js exists solely to separate the function library (search.js) from execution for test compatibility. Adding any additional code or functions to main.js will break this separation and cause testing issues.
17
17
18
18
### Dependency Injection Pattern
19
19
Functions that use browser objects (like `window`) accept them as parameters for testability. Most commonly this is a `windowObj = window` parameter:
0 commit comments