fix test
This commit is contained in:
parent
38b98e2dd5
commit
c9838d8989
|
@ -38,17 +38,29 @@ export 'package:flutter_test/flutter_test.dart';
|
|||
export 'package:patrol/patrol.dart';
|
||||
|
||||
part 'auth_test.dart';
|
||||
|
||||
part 'common.dart';
|
||||
|
||||
part 'home_test.dart';
|
||||
|
||||
part 'locals_test.dart';
|
||||
|
||||
part 'menu_test.dart';
|
||||
|
||||
part 'module_test.dart';
|
||||
|
||||
part 'notify_test.dart';
|
||||
|
||||
part 'profile_test.dart';
|
||||
|
||||
part 'property_test.dart';
|
||||
|
||||
part 'setting_test.dart';
|
||||
|
||||
part 'storage_test.dart';
|
||||
|
||||
part 'utils_test.dart';
|
||||
|
||||
part 'welcome_test.dart';
|
||||
|
||||
late PatrolTester $;
|
||||
|
@ -66,7 +78,7 @@ void main() {
|
|||
AuthenticationTest.signIn();
|
||||
AuthenticationTest.signUp();
|
||||
AuthenticationTest.signOut();
|
||||
// AuthenticationTest.recovery();
|
||||
AuthenticationTest.recovery();
|
||||
|
||||
ModularizationTest.switchLicense();
|
||||
ModularizationTest.containLicense();
|
||||
|
|
|
@ -21,6 +21,10 @@ Future<void> _loggedWithMultiLocalsAccount(
|
|||
if (forceLinkedLocal == true) {
|
||||
await StorageHelper() //
|
||||
.set(ProfileStorageKey.clientUUID.key, '7');
|
||||
await StorageHelper() //
|
||||
.set(ProfileStorageKey.ownerUUID.key, '7');
|
||||
await StorageHelper() //
|
||||
.set(ProfileStorageKey.clientName.key, 'FRE ACCESS DEMO');
|
||||
await PhpGroup //
|
||||
.resopndeVinculo
|
||||
.call(tarefa: 'A');
|
||||
|
@ -50,6 +54,10 @@ Future<void> _loggedWithSomeoneLocalAccount(
|
|||
if (forceLinkedLocal == true) {
|
||||
await StorageHelper() //
|
||||
.set(ProfileStorageKey.clientUUID.key, '7');
|
||||
await StorageHelper() //
|
||||
.set(ProfileStorageKey.ownerUUID.key, '7');
|
||||
await StorageHelper() //
|
||||
.set(ProfileStorageKey.clientName.key, 'FRE ACCESS DEMO');
|
||||
await PhpGroup //
|
||||
.resopndeVinculo
|
||||
.call(tarefa: 'A');
|
||||
|
|
Loading…
Reference in New Issue