Skip to content

Commit af81c93

Browse files
committed
Removed redundant tests.
1 parent bd90258 commit af81c93

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

example/e2e/asyncstorage.spec.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,6 @@ describe('Async Storage', () => {
160160
}
161161
});
162162

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-
170163
it('should store value in async storage', async () => {
171164
const storedNumberText = await element(by.id('storedNumber_text'));
172165
const increaseByTenButton = await element(by.id('increaseByTen_button'));
@@ -203,17 +196,6 @@ describe('Async Storage', () => {
203196
}
204197
});
205198

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-
217199
it('should crash when merging items in async storage', async () => {
218200
if (device.getPlatform() === 'android') {
219201
// Not yet supported.

0 commit comments

Comments
 (0)