This commit is contained in:
Adam Velebil 2024-02-12 08:35:19 +01:00
parent 372a38cf19
commit 903e2eb62d
No known key found for this signature in database
GPG Key ID: C9B1E4A3CBBD2E10
3 changed files with 1 additions and 6 deletions

View File

@ -26,8 +26,7 @@ void main() {
var binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();
binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;
group('Passkey PIN tests', ()
{
group('Passkey PIN tests', () {
const simplePin = '1111';
const fidoPin1 = '947344';
const fidoPin2 = '478178';
@ -56,7 +55,6 @@ void main() {
/// TODO: deal with error messages from fips keys
/// TODO: make sure that the outcome of this test is a set state, right now it differs between FIPS and non-FIPS keys.
});
appTest('Change to fidoPin1', (WidgetTester tester) async {
await tester.configurePasskey();

View File

@ -22,7 +22,6 @@ import 'test_util.dart';
const fido2DanceLongWaitMs = 15000;
extension Fido2Functions on WidgetTester {
Future<void> fido2DanceWait() async {
await pump(const Duration(milliseconds: fido2DanceLongWaitMs));
}
@ -63,6 +62,5 @@ extension Fido2Functions on WidgetTester {
await shortWait();
/// TODO 6. Verify Resetedness
}
}

View File

@ -32,7 +32,6 @@ const currentPin = Key('$_keyAction.current_pin');
const pinEntry = Key('$_keyAction.pin_entry');
const unlockFido2WithPin = Key('$_keyAction.unlock_fido2_with_pin');
// Credential actions
const editCredentialAction = Key('$_credentialAction.edit');
const deleteCredentialAction = Key('$_credentialAction.delete');