我想在不使用黄昏的情况下测试用户登录。
我的问题是我想用电子邮件和密码字段测试html表单,然后填写这些字段,如果登录正确,请显示主页路由。
在之前的版本中,我们做到了这一点:
$ this-> type('email','example@gmail.com); $ this-> type('password','123456');
现在,我不知道该怎么做。
$this->actingAs($user); //USUARIO CREADO ANTERIORMENTE
$response = $this->get(route('home'));
$response->assertStatus(200)
$response->assertViewIs('home');
我可以做的检查是登录用户可以转到主路径,但填写表单字段时却没有。