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

我的刀片中有以下内容…… div contact-form/contact-form/div 我想测试以确保Vue.js组件始终在我的测试中安装… public function testRoute(){ $this-visit(/); //stuck here} 基本上我期待测试刀片具有 contact-form.我该怎么办? 使用assert

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

<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,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部