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

前端之家收集整理的这篇文章主要介绍了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方法.

原文链接:https://www.f2er.com/laravel/130529.html

猜你在找的Laravel相关文章