feat(workspace): refine career workflows
Make job/CV comparisons language-aware and filter recruitment noise. Improve responsive career navigation, shared spacing, dashboard priorities, settings, localized workspace controls, and portable browser tests.
This commit is contained in:
@@ -21,7 +21,7 @@ test('recruiter status suggestions require an explicit apply action', async () =
|
||||
const applied = jest.fn();
|
||||
mockedApi.get.mockResolvedValue({ data: { hasSuggestion: true, currentStatus: 'Applied', suggestedStatus: 'Interview' } } as any);
|
||||
mockedApi.patch.mockResolvedValue({ data: {} } as any);
|
||||
render(<ToastProvider><ApplicationStatusSuggestion jobId={42} onApplied={applied} /></ToastProvider>);
|
||||
render(<I18nProvider><ToastProvider><ApplicationStatusSuggestion jobId={42} onApplied={applied} /></ToastProvider></I18nProvider>);
|
||||
|
||||
const button = await screen.findByRole('button', { name: 'Apply Interview' });
|
||||
expect(mockedApi.patch).not.toHaveBeenCalled();
|
||||
|
||||
Reference in New Issue
Block a user