Skip to content

Commit 6987df2

Browse files
committed
rephrase descriptions
1 parent 43d5f55 commit 6987df2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

FabricExample/e2e/issuesTests/Test528.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('Test528', () => {
55
await device.reloadReactNative();
66
});
77

8-
it('should Test528 exist', async () => {
8+
it('Test528 should exist', async () => {
99
await waitFor(element(by.id('root-screen-tests-Test528')))
1010
.toBeVisible()
1111
.whileElement(by.id('root-screen-examples-scrollview'))
@@ -17,15 +17,15 @@ describe('Test528', () => {
1717

1818
// Detox currently supports orientation only on iOS
1919
if (device.getPlatform() === 'ios') {
20-
it('displays headerRight button after orientation change on Screen1', async () => {
20+
it('headerRight button should be visible after orientation change', async () => {
2121
await expect(element(by.text('Custom Button'))).toBeVisible(100);
2222
await device.setOrientation('landscape');
2323
await expect(element(by.text('Custom Button'))).toBeVisible(100);
2424
await device.setOrientation('portrait');
2525
await expect(element(by.text('Custom Button'))).toBeVisible(100);
2626
});
2727

28-
it('displays headerRight button on Screen1 after orientation change on Screen2', async () => {
28+
it('headerRight button should be visible after coming back from horizontal screen', async () => {
2929
await element(by.text('Go to Screen 2')).tap();
3030
await device.setOrientation('landscape');
3131
await element(by.id('BackButton')).tap();

FabricExample/e2e/issuesTests/Test577.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('Test577', () => {
55
await device.reloadReactNative();
66
});
77

8-
it('should Test577 exist', async () => {
8+
it('Test577 should exist', async () => {
99
await waitFor(element(by.id('root-screen-tests-Test577')))
1010
.toBeVisible()
1111
.whileElement(by.id('root-screen-examples-scrollview'))
@@ -17,7 +17,7 @@ describe('Test577', () => {
1717

1818
// This issue is related to iOS modal
1919
if (device.getPlatform() === 'ios') {
20-
it('does not display content underneath modal when attempting to close it', async () => {
20+
it('does not display content underneath modal with gesture disabled when attempting to close it', async () => {
2121
await element(by.text('Open modal')).tap();
2222
for (let i = 0; i < 5; ++i) {
2323
await element(by.text('Modal')).swipe('down', 'fast');

0 commit comments

Comments
 (0)