-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.test.tsx
45 lines (35 loc) · 1.4 KB
/
App.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from 'react';
import { describe, test, expect } from '@jest/globals';
import { render, screen, fireEvent } from '@testing-library/react-native';
import TestId from '@shared/constants/testIds';
import store from '@app/redux/store';
import { updateUserLoginStatus } from '@account/features/auth/authSlice';
import { App } from './App';
describe('<App />', () => {
describe('앱이 실행된다면 네비게이터가 올바르게 동작해야 한다.', () => {
// 로그인 성공 재연
store.dispatch(updateUserLoginStatus(true));
test('두 번째 하단 탭을 클릭하면 모임 입장 스크린으로 네비게이터 되어야 한다.', async () => {
const { unmount } = render(<App />);
const BottomTap = await screen.findByRole('button', {
name: '모임 입장',
});
fireEvent.press(BottomTap);
expect(
await screen.findByTestId(TestId.connection.code),
).toBeOnTheScreen();
unmount();
});
test('세 번째 하단 탭을 클릭하면 마이페이지 스크린으로 네비게이터 되어야 한다.', async () => {
const { unmount } = render(<App />);
const BottomTap = await screen.findByRole('button', {
name: '마이페이지',
});
fireEvent.press(BottomTap);
expect(
await screen.findByTestId(TestId.account.myPage),
).toBeOnTheScreen();
unmount();
});
});
});