Selaa lähdekoodia

redundant test

Daniel Zlotin 8 vuotta sitten
vanhempi
commit
9feb880897
1 muutettua tiedostoa jossa 1 lisäystä ja 5 poistoa
  1. 1
    5
      playground/e2e/app.test.js

+ 1
- 5
playground/e2e/app.test.js Näytä tiedosto

@@ -7,13 +7,9 @@ describe('app', () => {
7 7
     expect(elementByLabel('React Native Navigation!')).toBeVisible();
8 8
   });
9 9
 
10
-  it('switch to tab based app', () => {
10
+  it('switch to tab based app, passProps and functions', () => {
11 11
     elementByLabel('Switch to tab based app').tap();
12 12
     expect(elementByLabel('This is tab 1')).toBeVisible();
13
-  });
14
-
15
-  it('passing props and functions', () => {
16
-    elementByLabel('Switch to tab based app').tap();
17 13
     expect(elementByLabel('Hello from a function!')).toBeVisible();
18 14
   });
19 15