route = new AccountsRoute($I); } public function testConfirmNewEmail(FunctionalTester $I) { $I->wantTo('change my email and get changed value'); $I->loggedInAsActiveAccount('CrafterGameplays', 'password_0'); $this->route->changeEmailConfirmNewEmail('H28HBDCHHAG2HGHGHS'); $I->canSeeResponseCodeIs(200); $I->canSeeResponseIsJson(); $I->canSeeResponseContainsJson([ 'success' => true, 'data' => [ 'email' => 'my-new-email@ely.by', ], ]); } }