test: verify you cannot revoke a smith member

This commit is contained in:
poka 2022-09-10 06:27:27 +02:00
parent 0d54030c1a
commit 83189990c6
1 changed files with 6 additions and 0 deletions

View File

@ -43,5 +43,11 @@ void main() async {
await tapKey(keyCloseTransactionScreen, duration: 0);
await waitFor('Aucune identité', exactMatch: true);
await sleep();
// Check test1 cannot be revoked
await goBack();
await tapKey(keyOpenWallet(test1.address));
await tapKey(keyManageMembership, duration: 1000);
await waitFor('Vous ne pouvez pas révoquer cette identité');
}, timeout: testTimeout());
}