php – Laravel 5.5和Vue.js刀片测试

我的刀片中有以下内容……

<div>
  <contact-form></contact-form>
</div>

我想测试以确保Vue.js组件始终在我的测试中安装…

public function testRoute()
{
    $this->visit('/');
    //stuck here
}

基本上我期待测试刀片具有< contact-form>.我该怎么办?

使用assertSee

Assert that the given string is contained within the response

$this
    ->visit('/')
    ->assertSee('<contact-form>')
    ->assertSee('</contact-form>');

查看更多laravel 5.5测试断言here

或者如果你想深入了解客户端浏览器测试,请看Laravel Dusk,它有assertSourceHas方法.

dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。