@@ -239,11 +239,34 @@ describe('@transfer - Transfer', () => {
239239 // check activities
240240 await sleep ( 1000 ) ;
241241 await swipeFullScreen ( 'up' ) ;
242+ await swipeFullScreen ( 'up' ) ;
242243 await elementById ( 'ActivityShort-0' ) . waitForDisplayed ( ) ;
243244 await expectTextWithin ( 'ActivityShort-0' , 'Transfer' ) ;
244245 await elementById ( 'ActivityShort-1' ) . waitForDisplayed ( ) ;
245246 await expectTextWithin ( 'ActivityShort-1' , 'Transfer' ) ;
246247
248+ await tap ( 'ActivityShowAll' ) ;
249+
250+ // All transactions
251+ await expectTextWithin ( 'Activity-1' , '-' ) ;
252+ await expectTextWithin ( 'Activity-2' , '-' ) ;
253+ await expectTextWithin ( 'Activity-3' , '+' ) ;
254+
255+ // Sent, 0 transactions
256+ await tap ( 'Tab-sent' ) ;
257+ await elementById ( 'Activity-1' ) . waitForDisplayed ( { reverse : true } ) ;
258+
259+ // Received, 1 transaction
260+ await tap ( 'Tab-received' ) ;
261+ await expectTextWithin ( 'Activity-1' , '+' ) ;
262+ await elementById ( 'Activity-2' ) . waitForDisplayed ( { reverse : true } ) ;
263+
264+ // Other, 2 transfer transactions
265+ await tap ( 'Tab-other' ) ;
266+ await expectTextWithin ( 'Activity-1' , '-' ) ;
267+ await expectTextWithin ( 'Activity-2' , '-' ) ;
268+ await elementById ( 'Activity-3' ) . waitForDisplayed ( { reverse : true } ) ;
269+
247270 // TODO: enable when boost backup is operational
248271 // https://github.com/synonymdev/bitkit-android/issues/321
249272 //const seed = await getSeed();
0 commit comments