feat: anon user save (#4185)

* feat: anon user save

* chore: add missing files

* chore: remove error
This commit is contained in:
Nathan.fooo
2023-12-21 14:13:21 +08:00
committed by GitHub
parent 0730a0caf4
commit 1401ba5960
38 changed files with 284 additions and 401 deletions

View File

@ -63,14 +63,14 @@ void main() {
);
await tester.tapGoogleLoginInButton();
tester.expectToSeeHomePage();
await tester.pumpAndSettle();
await tester.pumpAndSettle(const Duration(seconds: 2));
// The document will be synced from the server
await tester.openPage(
pageName,
);
await tester.pumpAndSettle();
await tester.pumpAndSettle(const Duration(seconds: 2));
expect(find.text('hello world', findRichText: true), findsOneWidget);
});
});