加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

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

发布时间:2020-12-14 19:54:48 所属栏目:大数据 来源:网络整理
导读:我的刀片中有以下内容…… div contact-form/contact-form/div 我想测试以确保Vue.js组件始终在我的测试中安装… public function testRoute(){ $this-visit('/'); //stuck here} 基本上我期待测试刀片具有 contact-form.我该怎么办? 使用assertSee 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方法.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读