This commit is contained in:
kmelmon 2020-08-18 17:31:19 -07:00 коммит произвёл GitHub
Родитель d0e6cf2760
Коммит b2557027fd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 15 удалений

Просмотреть файл

@ -90,25 +90,13 @@ export function LoginTestPage() {
```
## Add the new page to TestPages.ts
## Add the new page to RNTesterList.windows.ts
```
// TestPages.ts
const TestPages: ITestPage[] = [
{
testId: LOGIN_TESTPAGE,
description: 'Login Test Page',
content: LoginTestPage,
key: 'LegacyAccessibilityTest',
module: require('react-native/RNTester/js/examples-win/LegacyTests/AccessibilityTestPage'),
},
```
## Put new testIDs in Consts.ts
```
//Consts.ts
export const USERNAME_ON_LOGIN = 'UserName';
```
## Create a Page Object to match with the page in test app