Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(cat-voices): Store and restore seeds during onboarding create #1490

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8f348d1
store and restore seeds during onboarding create
oldGreg5 Jan 9, 2025
798d4ea
style fix
oldGreg5 Jan 9, 2025
13b3f93
style fix
oldGreg5 Jan 9, 2025
cd7ea6c
style fix
oldGreg5 Jan 9, 2025
2514884
Merge branch 'refs/heads/main' into 1453-task-integration-tests-conti…
oldGreg5 Jan 10, 2025
d515b80
few more tests
oldGreg5 Jan 10, 2025
8c07d84
add keychain created success test
oldGreg5 Jan 10, 2025
1a38ce0
cleanup
oldGreg5 Jan 10, 2025
7bb40b8
formatting fix
oldGreg5 Jan 10, 2025
648172d
refactoring
oldGreg5 Jan 11, 2025
b710201
link wallet first two screens tests
oldGreg5 Jan 13, 2025
96f011b
Merge branch 'refs/heads/main' into 1453-task-integration-tests-conti…
oldGreg5 Jan 13, 2025
3403192
Merge branch 'refs/heads/main' into 1453-task-integration-tests-conti…
oldGreg5 Jan 13, 2025
8a5f74f
styling fix
oldGreg5 Jan 13, 2025
5890542
styling fix
oldGreg5 Jan 13, 2025
67e9176
Merge branch 'main' into 1453-task-integration-tests-continue-automat…
oldGreg5 Jan 13, 2025
fa3d247
Merge branch 'main' into 1453-task-integration-tests-continue-automat…
oldGreg5 Jan 14, 2025
000ac53
Merge branch 'main' into 1453-task-integration-tests-continue-automat…
oldGreg5 Jan 14, 2025
0e82662
Merge branch 'main' into 1453-task-integration-tests-continue-automat…
oldGreg5 Jan 14, 2025
70c8c0f
Merge remote-tracking branch 'refs/remotes/origin/main' into 1453-tas…
oldGreg5 Jan 15, 2025
8570c91
2 restore flow tests
oldGreg5 Jan 15, 2025
020e541
Merge remote-tracking branch 'origin/1453-task-integration-tests-cont…
oldGreg5 Jan 15, 2025
9b11694
Merge branch 'main' into 1453-task-integration-tests-continue-automat…
oldGreg5 Jan 15, 2025
cbdaa7c
Merge branch 'refs/heads/main' into 1453-task-integration-tests-conti…
oldGreg5 Jan 16, 2025
eb9732d
pr comments
oldGreg5 Jan 16, 2025
c6501ba
bit
oldGreg5 Jan 16, 2025
ea0b1cc
cleanup
oldGreg5 Jan 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import 'package:flutter/material.dart';

class CommonPage {
static const decoratorData = Key('DecoratorData');
static const decoratorIconBefore = Key('DecoratorIconBefore');
static const decoratorIconAfter = Key('DecoratorIconAfter');
static const decorData = Key('DecoratorData');
static const decorIconBefore = Key('DecoratorIconBefore');
static const decorIconAfter = Key('DecoratorIconAfter');
static const dialogCloseButton = Key('DialogCloseButton');
static const voicesTextField = Key('VoicesTextField');
}
Loading
Loading