1
0
Fork 0
mirror of synced 2024-07-04 06:00:53 +12:00

Merge remote-tracking branch 'origin/1.5.x' into fix-template-enum-seperation

This commit is contained in:
Jake Barnby 2024-02-08 00:31:11 +13:00
commit 1b36d3533a
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C
3 changed files with 4 additions and 4 deletions

View file

@ -63,7 +63,7 @@ class AccountTest extends Scope
$this->assertArrayNotHasKey('errors', $session['body']);
$this->assertIsArray($session['body']['data']);
$this->assertIsArray($session['body']['data']['accountCreateEmailSession']);
$this->assertIsArray($session['body']['data']['accountCreateEmailPasswordSession']);
$cookie = $session['cookies']['a_session_' . $this->getProject()['$id']];
$this->assertNotEmpty($cookie);

View file

@ -1186,7 +1186,7 @@ trait Base
}';
case self::$CREATE_ACCOUNT_SESSION:
return 'mutation createAccountEmailSession($email: String!, $password: String!){
accountCreateEmailSession(email: $email, password: $password) {
accountCreateEmailPasswordSession(email: $email, password: $password) {
_id
userId
expire

View file

@ -287,7 +287,7 @@ class BatchTest extends Scope
accountCreate(userId: $userId, email: $email, password: $password, name: $name) {
name
}
accountCreateEmailSession(email: $email, password: $password) {
accountCreateEmailPasswordSession(email: $email, password: $password) {
expire
}
}',
@ -308,7 +308,7 @@ class BatchTest extends Scope
$this->assertIsArray($response['body']['data']);
$this->assertArrayNotHasKey('errors', $response['body']);
$this->assertArrayHasKey('accountCreate', $response['body']['data']);
$this->assertArrayHasKey('accountCreateEmailSession', $response['body']['data']);
$this->assertArrayHasKey('accountCreateEmailPasswordSession', $response['body']['data']);
$this->assertEquals('Tester', $response['body']['data']['accountCreate']['name']);
}