Skip to content

Commit 624f7ca

Browse files
committed
fix: corrected file names
1 parent 668b83c commit 624f7ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/AuthRoutes.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { AuthRoutes } from '../src/AuthRoutes';
44

55
jest.mock('@/views/Login', () => () => <div>Login Page</div>);
66
jest.mock('@/views/PassKeyLogin', () => () => <div>Passkey Login Page</div>);
7-
jest.mock('@/views/PasskeyRegistration', () => () => <div>Register Passkey Page</div>);
7+
jest.mock('@/views/PassKeyRegistration', () => () => <div>Register Passkey Page</div>);
88
jest.mock('@/views/PhoneRegistration', () => () => <div>Verify Phone Page</div>);
99

1010
describe('AuthRoutes', () => {

tests/PhoneRegistration.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jest.mock('react-router-dom', () => ({
1212
useNavigate: jest.fn(),
1313
}));
1414

15-
jest.mock('@/components/OTPInput', () => (props: any) => (
15+
jest.mock('@/components/OtpInput', () => (props: any) => (
1616
<input
1717
data-testid="otp-input"
1818
value={props.value}

0 commit comments

Comments
 (0)