Skip to content

Commit 054405e

Browse files
Post-rebase cleanup
1 parent a8887c1 commit 054405e

1 file changed

Lines changed: 0 additions & 42 deletions

File tree

src/__tests__/components/InterlinearizerLoader.test.tsx

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -71,48 +71,6 @@ type MockProject = {
7171

7272
const testProjectId = 'test-project-id';
7373

74-
jest.mock('../../hooks/useInterlinearizerBookData');
75-
jest.mock('../../hooks/useOptimisticBooleanSetting');
76-
77-
jest.mock('../../components/ContinuousView', () => ({
78-
__esModule: true,
79-
default: () => <div data-testid="continuous-view" />,
80-
}));
81-
82-
jest.mock('../../components/Interlinearizer', () => ({
83-
__esModule: true,
84-
default: () => <div data-testid="interlinearizer" />,
85-
}));
86-
87-
jest.mock('../../components/ContinuousScrollToggle', () => ({
88-
__esModule: true,
89-
default: ({
90-
checked,
91-
disabled,
92-
onCheckedChange,
93-
}: {
94-
checked: boolean;
95-
disabled: boolean;
96-
label: string;
97-
onCheckedChange: (v: boolean) => void;
98-
}) => (
99-
<input
100-
type="checkbox"
101-
data-testid="continuous-scroll-toggle"
102-
checked={checked}
103-
disabled={disabled}
104-
onChange={(e) => {
105-
if (!disabled) onCheckedChange(e.target.checked);
106-
}}
107-
/>
108-
),
109-
}));
110-
111-
jest.mock('../../components/ScriptureNavControls', () => ({
112-
__esModule: true,
113-
default: () => <div data-testid="scripture-nav-controls" />,
114-
}));
115-
11674
const STUB_ACTIVE_PROJECT: MockProject = {
11775
id: 'proj-1',
11876
createdAt: '2026-01-01T00:00:00Z',

0 commit comments

Comments
 (0)