-
-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added parameter organizationId This was causing error since at client side we were not providing the id of organization while registering. * Fixed tests for missing parameters * Fixed failing workflow * Fixed test cases
- Loading branch information
Showing
4 changed files
with
34 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,13 @@ void main() { | |
var mutation = false; | ||
expect(mutation, false); | ||
|
||
final fnData = Queries() | ||
.registerUser('Ayush', 'Chaudhary', '[email protected]', 'password'); | ||
final fnData = Queries().registerUser( | ||
'Ayush', | ||
'Chaudhary', | ||
'[email protected]', | ||
'password', | ||
'orgId123', | ||
); | ||
if (fnData.contains('Ayush')) { | ||
mutation = true; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters