refactor: Switch from maestro to flutter integration tests
This commit is contained in:
parent
c15be05246
commit
0a42f28cf1
34 changed files with 495 additions and 727 deletions
14
integration_test/data/environment_constants.dart
Normal file
14
integration_test/data/environment_constants.dart
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const homeserver = String.fromEnvironment(
|
||||
'HOMESERVER',
|
||||
defaultValue: '10.0.2.2',
|
||||
);
|
||||
const user1Name = String.fromEnvironment('USER1_NAME', defaultValue: 'alice');
|
||||
const user1Pw = String.fromEnvironment(
|
||||
'USER1_PW',
|
||||
defaultValue: 'AliceInWonderland',
|
||||
);
|
||||
const user2Name = String.fromEnvironment('USER2_NAME', defaultValue: 'bob');
|
||||
const user2Pw = String.fromEnvironment(
|
||||
'USER2_PW',
|
||||
defaultValue: 'JoWirSchaffenDas',
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue