@@ -160,13 +160,6 @@ describe('Async Storage', () => {
160
160
}
161
161
} ) ;
162
162
163
- it ( 'should be visible' , async ( ) => {
164
- await test_getSetClear . tap ( ) ;
165
- await expect ( element ( by . id ( 'clear_button' ) ) ) . toExist ( ) ;
166
- await expect ( element ( by . id ( 'increaseByTen_button' ) ) ) . toExist ( ) ;
167
- await expect ( element ( by . id ( 'storedNumber_text' ) ) ) . toExist ( ) ;
168
- } ) ;
169
-
170
163
it ( 'should store value in async storage' , async ( ) => {
171
164
const storedNumberText = await element ( by . id ( 'storedNumber_text' ) ) ;
172
165
const increaseByTenButton = await element ( by . id ( 'increaseByTen_button' ) ) ;
@@ -203,17 +196,6 @@ describe('Async Storage', () => {
203
196
}
204
197
} ) ;
205
198
206
- it ( 'should be visible' , async ( ) => {
207
- await test_mergeItem . tap ( ) ;
208
- await expect ( element ( by . id ( 'saveItem_button' ) ) ) . toExist ( ) ;
209
- await expect ( element ( by . id ( 'mergeItem_button' ) ) ) . toExist ( ) ;
210
- await expect ( element ( by . id ( 'restoreItem_button' ) ) ) . toExist ( ) ;
211
- await expect ( element ( by . id ( 'testInput-name' ) ) ) . toExist ( ) ;
212
- await expect ( element ( by . id ( 'testInput-age' ) ) ) . toExist ( ) ;
213
- await expect ( element ( by . id ( 'testInput-eyes' ) ) ) . toExist ( ) ;
214
- await expect ( element ( by . id ( 'testInput-shoe' ) ) ) . toExist ( ) ;
215
- } ) ;
216
-
217
199
it ( 'should crash when merging items in async storage' , async ( ) => {
218
200
if ( device . getPlatform ( ) === 'android' ) {
219
201
// Not yet supported.
0 commit comments